本地NSNotification消防日期需要在12小时后设置

时间:2013-08-02 12:38:04

标签: ios objective-c nsdate nsnotificationcenter

如何在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];

任何建议都表示赞赏。

1 个答案:

答案 0 :(得分:6)

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

时间间隔以秒为单位

相关问题