タイムスタンプを nsuserdefaults に設定し、変更されているかどうかを確認してからアクションを実行することはできますか?
if ([[NSUserDefaults standardUserDefaults] boolForKey:@"timestamp"])
{
}
タイムスタンプを nsuserdefaults に設定し、変更されているかどうかを確認してからアクションを実行することはできますか?
if ([[NSUserDefaults standardUserDefaults] boolForKey:@"timestamp"])
{
}
You cannot store the timestamp itself in the NSUserDefaults, but you can store an integer representing the TimeStamp, these you can easily compare.
Check this for an example; Example of timestamp - int conversion, storing in NSUserDefaults