0

タイムスタンプを nsuserdefaults に設定し、変更されているかどうかを確認してからアクションを実行することはできますか?

if ([[NSUserDefaults standardUserDefaults] boolForKey:@"timestamp"])
 {

 }
4

1 に答える 1

2

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

于 2012-06-06T14:07:30.623 に答える