I'm brand new to core data, and I'm having a bit of trouble. I'm trying to store an object (a recent address). Here is my code:
NSError *error;
recentSearch = [[RecentSearch alloc] init];
[recentSearch setName:[searchTextField text]];
[recentSearch setDate:[NSDate date]];
NSManagedObjectContext *context = [recentSearch managedObjectContext];
if(![context save:&error])
{
NSLog(@"Not saved. Error: %@",[error description]);
}
else
{
NSLog(@"Saved");
}
I don't think this is working though. Is there anything wrong with this code? recentSearch is an NSManagedObject. My code prints Not saved. Error: (null). Any help is greatly appreciated.