如何在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];
任何建议都表示赞赏。
答案 0 :(得分:6)
localNotif.fireDate =[[NSDate date] dateByAddingTimeInterval:60*60*12]
时间间隔以秒为单位