我正在开发报警应用程序。我想在特定时间设置延后闹钟的功能。作为iPhone的系统闹钟功能,“当我们在设置闹钟后关闭手机”。它的工作原理(点击按下或按任何按钮来打盹)并滑动以解锁手机。
我希望设置点按以暂停,而不是幻灯片来暂停功能。
源代码:
UILocalNotification *localNotification = [[UILocalNotification alloc] init];
localNotification.fireDate = date;
NSLog(@"Notification will be shown on: %@",localNotification.fireDate);
localNotification.alertBody = @"Time to wake up";
localNotification.alertAction = @"Snooze";
localNotification.soundName = UILocalNotificationDefaultSoundName;
localNotification.applicationIconBadgeNumber = -1;
[[UIApplication sharedApplication] scheduleLocalNotification:localNotification];