Is it okay to call this?
[[[NSUserDefaults standardUserDefaults] objectForKey:@"searchEnginesOrder"] addObject:@"eBay"];
I have a UITableView
whose cells I want to load directly from the defaults, and I also want to modify those defaults. I'm wondering if the above line actually has any effect (when I NSLog
the default's array searchEngineOrder
it's null, I'm wondering if it's because the above code isn't actually adding to the defaults.