I'm trying to build a RSS reader, but I'm having trouble with saving the date to CoreData.
NSDateFormatter *df = [[NSDateFormatter alloc] init];
[df setDateFormat:@"yyyy-MM-dd"];
NSDate *dt = [df dateFromString: [article valueForKey:@"pubDate"]];
[df release];
When I save everything, the date field in the database is null.
Please help!