Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
Out of curiosity, are you checking the return values of the write to file / copy file, and/or the error flags and stuff? I know it's not shown here, but have you checked? – shortstuffsushi Sep 26 '12 at 18:52
yes, it seemingly doesn't give an error, but i was wondering, maybe it's coz i'm trying to save the same dictionary? can that be done? will it override the other one or? – user1012558 Sep 27 '12 at 6:19
Yes, if you're setting the objectForKey value, you're overwriting the previous entry for that key (if it exists). I don't think that should be the issue. – shortstuffsushi Sep 27 '12 at 16:00
If you're running this in the simulator, you can actually view the apps file structure by navigating to ~/Library/Application Support/iPhone Simulator/(your version)/Applications/(your application). The actual application names in the Applications directory will be just hashes, but if you examine them, you'll see YourAppName.app in one of them. There will also be the Documents directory where you can view this file you're trying to modify. – shortstuffsushi Sep 27 '12 at 16:20

closed as not constructive by Tom Walters, Shakedown, elusive, Mario, Zenith Mar 30 at 23:54

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

I found the solution, seems like there was just a bug in Xcode. I cleaned the build, restarted the project, removed and inserted the plist and it worked. sry for bothering and thanks for helping :)

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.