I have the following code
NSMutableArray *plistArray = [[NSMutableArray alloc] initWithContentsOfFile:filepath];
[plistArray insertObject:title atIndex:2];
but I would like to add an object to the end of the array.
How can this be done, and I need to set the last value to nil, at the moment I do not, and it works fine.
Hi
source
share