如何在 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];
任何建议表示赞赏。