I have searched in Apple\'s iOS dev center but couldn\'t find anything quite right. Here\'s my problem:
I have an app that uses CoreData with several entities. The d
Sounds like you want the NSUserDefaults storage. It's used like a dictionary, but persists:
[[NSUserDefaults standardUserDefaults] setObject:myDate forKey:@"LastUpdateTime"];