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 kind of new to saving NSMutableArray To NSUerdefaults.

here is the declaration of the iVar: .h file

@interface GameData : NSObject {

NSMutableArray *PPLayers;

}

@property (nonatomic,retain) NSMutableArray *PPLayers;

.m file

@synthesize PPLayers;

here is how i am adding a object to the array and saving it to the default:

-(void)AddObject:(NSString *) object ToArray:(NSMutableArray*)array{
if (array == PShoes) {
    [PShoes addObject:object];
    NSLog(@"Object : %@",object);
    [[NSUserDefaults standardUserDefaults]setValue:PPLayers forKey:@"pplayers"];
    [[NSUserDefaults standardUserDefaults]synchronize];
    NSLog(@"%@",PPLayers);
}

sometimes it works and sometime the app crashes.

and here is how i am trying to load the array:

    PPLayers = [[NSUserDefaults standardUserDefaults]mutableArrayValueForKey:@"pplayers"];

something is wrong here but i dont know what. sometimes when i load it it gives me null. the app save it only when i run it from the simulator. i would like to get some help plz. thanks!

share|improve this question

1 Answer

try this

         [[NSUserDefaults standardUserDefaults]setValue:PPLayers forKey:@"pplayers"];

         NSArray *NewPPLayers =[[NSArray alloc]initwithArray:[[NSUserDefaults standardUserDefaults]mutableArrayValueForKey:@"pplayers"]];
share|improve this answer

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.