在做项目的时候遇到这样一个需求,写一个备忘录,可以设定闹钟提醒。
然后闹钟提醒怎样做,查了查查到的都是使用本地通知,然后就使用UILocalNotification实现的功能。
UILocalNotification使用的核心代码如下:
一:设定一个本地推送
UILocalNotification *notification = [[UILocalNotification alloc] init];
if (notification)
{
notification.fireDate = _alertDate;
notification.repeatInterval = 0;
notification.timeZone = [NSTimeZone defaultTimeZone];
notification.soundName = UILocalNotificationDefaultSoundName;
notification.alertAction = @"这里时确定按钮";
notification.hasAction = YES;
notification.applicationIconBadgeNumber = [UIApplication sharedApplication].applicationIconBadgeNumber + 1;
notification.alertBody = [NSString stringWithFormat: