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.

my cocos2d game high score's are written into a plist. Every time i go into the plist only one row of data is written, every time I write into the plist it overwrites the previous data?

Heres my code for writing to my plist:

-(void)writeToPlistHighScore {
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentsDirectory = [paths objectAtIndex:0];
    NSString *filePath = [NSString stringWithFormat:@"%@/%@",documentsDirectory,@"HighScore.plist"];
    NSMutableDictionary* plistDict = [[NSMutableDictionary alloc] init];

    [plistDict setObject:[NSNumber numberWithInteger:scoreNumber] forKey:@"Level2_HighScore"];
    [plistDict writeToFile:filePath atomically: YES];
    NSLog(@"HighScore wrote: %i", HighScore);
}
share|improve this question

1 Answer

up vote 4 down vote accepted

That's because you're creating a new, empty NSDictionary every time. Then you add one score and save that dictionary.

You need to initialize your dictionary with the existing plist so that the dictionary loads the existing highscores:

NSMutableDictionary* plistDict = [[NSMutableDictionary alloc] initWithContentsOfFile: writeToFile:filePath];

// if dictionary is nil the highscore file doesn't exist yet
if (plistDict == nil)
    plistDict = [[NSMutableDictionary alloc] init];

Also, don't forget to release the dictionary when you're done! Right now you're leaking memory.

[plistDict release];
share|improve this answer
Thank You! works perfectly – Skullz Jan 30 '12 at 23:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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