I am trying to get my application to load up some initial data from a plist file (on the iPhone), then alter that data, store it back into the plist (as changed values), and then be able to use those data.
Here is what happens, it loads in the code just fine, seems like it writes to it as well, but when i then exit the application, close it down and re-opens it again from scratch, it just loads up the initial plist file.
what to do here? here is my code:
This code gets the values out of the plist:
// Setup array
_collection = [NSMutableArray new];
// Get path to the PlayerData.plist
NSError *error;
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); //1
NSString *documentsDirectory = [paths objectAtIndex:0]; //2
NSString *path = [documentsDirectory stringByAppendingPathComponent:@"PlayerData.plist"]; //3
NSFileManager *fileManager = [NSFileManager defaultManager];
if (![fileManager fileExistsAtPath: path]) //4
{
NSString *bundle = [[NSBundle mainBundle] pathForResource:@"PlayerData"
ofType:@"plist"]; //5
[fileManager copyItemAtPath:bundle toPath: path error:&error]; //6
}
NSMutableDictionary *playerData = [[NSMutableDictionary alloc] initWithContentsOfFile: path];
And this method writes data
// Get path to the PlayerData.plist
NSError *error;
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); //1
NSString *documentsDirectory = [paths objectAtIndex:0]; //2
NSString *path = [documentsDirectory stringByAppendingPathComponent:@"PlayerData.plist"]; //3
NSFileManager *fileManager = [NSFileManager defaultManager];
if (![fileManager fileExistsAtPath: path]) //4
{
NSString *bundle = [[NSBundle mainBundle] pathForResource:@"PlayerData"
ofType:@"plist"]; //5
[fileManager copyItemAtPath:bundle toPath: path error:&error]; //6
}
// Add to the plist file for permanent saving
NSMutableDictionary *data = [[NSMutableDictionary alloc] initWithContentsOfFile: path];
// Enumerate through all the teddies in the collection
for (Teddy *ted in _collection) {
// Get the name, and add it as the key to the data object, and the numberOwned as value
[data setObject:[NSNumber numberWithInt:ted.numberOwned] forKey:ted.name];
}
// Write to file
[data writeToFile: path atomically:YES];
Any help is greatly appriciated! in short, i want the data to persist even after a full closedown of the phone, and thought plist was the way to go. just gotta figure out how to actually store it.