-1

如何在 12 小时后设置我的 localNotifications 触发日期属性?我的代码片段如下,

 UILocalNotification *localNotif = [[UILocalNotification alloc] init];
 if (localNotif == nil)
     return;
 localNotif.fireDate = [NSDate date]; // how to set after 12 hours
 localNotif.timeZone = [NSTimeZone defaultTimeZone];

任何建议表示赞赏。

4

1 回答 1

6
 localNotif.fireDate =[[NSDate date] dateByAddingTimeInterval:60*60*12]

时间间隔以秒为单位

于 2013-08-02T12:41:21.560 回答