I was following the answer for this question (How To Save Data For Bookmarks?) to save a bookmarks into the NSUserDefaults. It is pretty straightforward, and it works properly for the first time (when there's no entry in the plist). But then it tries to copy the previously saved bookmarks into the new NSMutableArray the app crashes:
*** Terminating app due to uncaught exception 'NSInvalidArgumentException',
reason: '*** -[NSMutableArray initWithCapacity:]:
method only defined for abstract class. Define -[__NSArrayM initWithCapacity:]!'
This is my code (a little modified):
-(void) addStationToFavorites{
// Get the user defaults object
NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];
NSString *userSelectedService = [userDefaults objectForKey:@"idBikeServiceProvider"];
// Load your bookmarks (editable array)
NSMutableArray *bookmarks = [[NSMutableArray alloc] initWithCapacity:100];
NSArray *bookmarksLoaded = [userDefaults arrayForKey:[NSString stringWithFormat: @"favStationForService%@",userSelectedService]];
if (bookmarksLoaded != nil) {
[bookmarks initWithArray:bookmarksLoaded];
} else {
[bookmarks init];
}
// Add a bookmark
NSMutableDictionary *bookmark = [NSMutableDictionary new];
[bookmark setValue:pass_stationName forKey:pass_stationId];
[bookmarks addObject:bookmark];
// Save your (updated) bookmarks
[userDefaults setObject:bookmarks forKey:[NSString stringWithFormat: @"favStationForService%@",userSelectedService]];
[userDefaults synchronize];
// Memory cleanup
[bookmarks release];
//Show feedback
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@""
message:@"Added!"
delegate:self
cancelButtonTitle:@"Ok"
otherButtonTitles:nil];
[alert show];
[alert release];
}