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"];
Swift 2.X Version
NSUserDefaults.standardUserDefaults().setObject(NSDate(), forKey: "Last_Modified")
Use NSUserDefaults
to store the last update time.
When your Updater is successful, write the success time to your apps defaults, that way it is accessible on your next launch, and you can call this anytime you to.