Search Results

Search found 1 results on 1 pages for 'jjsaccolo'.

Page 1/1 | 1 

  • NSUserDefaults doesn't save

    - by JJSaccolo
    Hi everybody! i'm trying to save some informations in an iphone/ipad app. The problem is that it works but if i close the app (with the home button on the simulator or closing with cmd+q) the informations become lost! this is my code (and, if you see, i used "syncronize") - (IBAction)choose1{ NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; [defaults setObject:@"choose1" forKey:@"choose"]; [defaults synchronize]; } - (IBAction)choose2{ NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; [defaults setObject:@"choose2" forKey:@"choose"]; [defaults synchronize]; } - (IBAction)openview{ NSString *var = [[NSUserDefaults standardUserDefaults] objectForKey:@"choose"]; if (var == @"choose1"){ [self pushViewController:view1 animated:YES];} else if (var == @"choose1"){ [self pushViewController:view2 animated:YES]; } } I don't understand why :(

    Read the article

1