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 new to iphone

I have storedGameData.plist file and under "root" dictionary under "root" dictionary I have an array named "gameProgress" and I want to insert data in this "gameProgress" array.

following is my code

-(void)writeDataToPhone
{
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);

    NSString *documentsDirectory = [paths objectAtIndex:0];

    NSString *plistPath = [documentsDirectory stringByAppendingPathComponent:@"storedGameData.plist"];

    // read or create plist

    NSMutableDictionary *dict;

    NSFileManager *fileManager = [NSFileManager defaultManager];

    if ( [fileManager fileExistsAtPath:plistPath] ) {

        // Reading the Plist from inside the if

        //statement

        NSLog(@"dictionary existed, reading %@", plistPath);

        dict = [NSMutableDictionary dictionaryWithContentsOfFile:plistPath];

    }

   NSNumber *newNumberOfCompletedLevels = [NSNumber numberWithInt:1];

    [dict setObject:newNumberOfCompletedLevels forKey:@"gameProgress"];

    NSLog(@"writing to %@…", plistPath);

    [dict writeToFile:plistPath atomically:YES];


NSLog(@"dictionary values are…:");

for (id key in dict) {

    NSLog(@"key=%@, value=%@", key, [dict objectForKey:key]);

    }
}

but my array is blank nothing is inserted in it

what is the problem with my code? and what should I change in my code to insert value in array

share|improve this question

3 Answers

up vote 1 down vote accepted

working absolutely fine. I just do,

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);

NSString *documentsDirectory = [paths objectAtIndex:0];

NSString *plistPath = [documentsDirectory stringByAppendingPathComponent:@"storedGameData.plist"];

// read or create plist

NSMutableDictionary *dict=[[NSMutableDictionary alloc]init];

NSFileManager *fileManager = [NSFileManager defaultManager];

if ( [fileManager fileExistsAtPath:plistPath] ) {

    // Reading the Plist from inside the if

    //statement

    NSLog(@"dictionary existed, reading %@", plistPath);

    dict = [NSMutableDictionary dictionary
}

NSNumber *newNumberOfCompletedLevels = [NSNumber numberWithInt:5];

[dict setObject:newNumberOfCompletedLevels forKey:@"gameProgress"];

NSLog(@"writing to %@…", plistPath);

[dict writeToFile:plistPath atomically:YES];


NSLog(@"dictionary values are…:");

for (id key in dict)
{

    NSLog(@"key=%@, value=%@", key, [dict objectForKey:key]);

}
share|improve this answer

The Error is in dict object. You have not initialized it.

Please use this line of code:

NSMutableDictionary *dict = [NSMutableDictionary alloc] init];

instead of:

NSMutableDictionary *dict; 

It'll resolve your issue. Please let me know your feedback.

share|improve this answer
some times this is also a reason. – amrit_neo Dec 6 '12 at 12:11
thanks for your reply but nothing is inserted into plist file – user1881612 Dec 6 '12 at 12:13
does the application crashes again??? – iCreative Dec 6 '12 at 12:16
Check this to insert value in dict. NSString *newNumberOfCompletedLevels = [NSString stringWithFormat@"%d",1]; [dict setObject:newNumberOfCompletedLevels forKey:@"gameProgress"]; – iCreative Dec 6 '12 at 12:18
no app is not crashing but my array in plist is blank. – user1881612 Dec 6 '12 at 12:18

You need to initialize your dict object.

NSMutableDictionary *dict = [NSMutableDictionary alloc] init];
share|improve this answer
I solve crashing issue but my array is blank in plist file – user1881612 Dec 6 '12 at 12:19

Your Answer

 
discard

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