In my project I use an NSMutableArray in my app delegate with NSUserDefaults:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
array = [[NSMutableArray alloc] initWithArray:[[NSUserDefaults standardUserDefaults] objectForKey:@"array"]];
and
- (void)applicationWillTerminate:(UIApplication *)application {
[[NSUserDefaults standardUserDefaults] setObject:array forKey:@"array"];
the problem is that when I write in a class, for example, firstViewController.m, in viewdidload:
NSLog(@"number of element:%d", appDelegate.array.count);
the result is always "2" but if I write
[appDelegate.array removeAllObjects];
then the result of count is "0". When I restart the app the count is again "2". What can I do to have zero objects inside the array when I restart the application?