I am developing an iphone app which has the ability of "add to bookmark/favorite"
But each one of these bookmark has a "status" subtitle or field, the "status" are constantly updated in open jSon database, so in the bookmark table view, when a user clicked an "Update" button, it will send a request to the server and pull out the most updated "status" for every bookmark.
Then when the user click a different view, it will save all of the new status into userDefault, I did it by doing the following in "viewWillDisappear()":
NSUserDefaults * defaults = [NSUserDefaults standardUserDefaults];
[defaults setObject:myObject forKey:@"myServiceList"];
[defaults synchronize];
The above works fine, and the data is saved.
But afterward when I go back to the bookmark view, and then click on other view again, it will CRASH! It won't get pass the following line of code (so it works on 1st time, but not 2nd time):
[myDict setObject:[myService objectForKey:@"status"] forKey:@"status"];
After looking at the userDefault API, I tried adding the following line of code to solve the problem, and it works PERFECT!
NSUserDefaults * defaults = [NSUserDefaults standardUserDefaults];
[defaults setObject:myObject forKey:@"myServiceList"];
[defaults synchronize];
//I added the following
[NSUserDefaults resetStandardUserDefaults];
Even tho it solve my problem, but I don't really get how it solve it, the documentation said it "Synchronizes any changes made to the shared user defaults object and releases it from memory."
Does that mean that my "myServiceList" was in use, and I will have to release it from memory before I can use it again?
Can someone please help me understand this problem?
Thank You!
Edited: Here is my viewWIllDisappear() of my bookmark view, if I switch to other view from bookmark view, it will be fine, then when I go back to bookmark view and switch to other view again, it will crash:
- (void)viewWillDisappear:(BOOL)animated
{
[super viewWillDisappear:animated];
NSLog(@"start saving data");
NSUserDefaults * defaults = [NSUserDefaults standardUserDefaults];
NSMutableArray * defaultArray = [[defaults objectForKey:@"myServiceList"] mutableCopy];
for (NSString *key in self.tableContents)
{
for(NSMutableDictionary *myService in [tableContents objectForKey:key])
{
for(NSMutableDictionary *myDict in defaultArray)
{
if([[myDict objectForKey:@"serviceNumber"] isEqualToString:[myService objectForKey:@"serviceNumber"]])
{
//The following line is where it will crash
[myDict setObject:[myService objectForKey:@"status"] forKey:@"status"];
NSLog(@"updated");
break;
}
}
}
}
[defaults setObject:defaultArray forKey:@"myServiceList"];
[defaults synchronize];
//[NSUserDefaults resetStandardUserDefaults];
}