2013-08-02 34 views
-1

如何在12小時後準確設置我的localNotifications fire date屬性? 我的代碼片段如下,本地NSNotification火災日期需要在12小時後設置

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

任何建議表示讚賞。

回答

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

時間間隔以秒爲單位

相關問題