Would love som help with this problem I'm having with objects that wont be added to arrays.
- (IBAction)done:(id)sender{
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
NSArray *katArr = [defaults objectForKey:@"kategorier"];
NSMutableArray *kategorier = [katArr mutableCopy];
[kategorier addObject:[katfield text]];
NSLog(@"la till kat: %d", [kategorier count]);
[defaults setObject:kategorier forKey:@"kategorier"];
NSArray *bArr = [defaults objectForKey:@"bild"];
NSMutableArray *bilds = [bArr mutableCopy];
[bilds addObject:valdFarg];
NSLog(@"la till pic: %d", [bilds count]);
[defaults setObject:bilds forKey:@"bild"];
[defaults synchronize];
[self dismissModalViewControllerAnimated:YES];
}
The first object, "[katfield text]", is being added and NSLog output counts up. The problem is that the second time I do it with the object "valdFarg", it is not working. I have tried allocating memory for the array but that is not the problem, I think at least.
Thanks.
bArris not nil? – xlc Feb 29 '12 at 9:14bills = [NSMutableArray arrayWithArray:bArr]– xlc Feb 29 '12 at 9:21