0

我想开发一个提醒应用程序。它应该每周、每月、每季度、六个月和每年提醒人们。

我正在使用 NSDate 属性获取当前日期,然后将 7 天添加到当前日期,添加 7 天后的日期将存储在 plist 中。

我选择电话/邮件/消息按钮来提醒人们。在按钮操作中,我将当前日期与保存在 plist 中的日期进行比较,然后设置本地通知。但是根据火灾日期,本地通知不起作用。当应用程序在前台时它工作正常,但它进入后台它不工作。

4

1 回答 1

0

你必须安排你的闹钟。以下是 Apple 文档的片段:

- (void)scheduleAlarmForDate:(NSDate*)theDate
{
    UIApplication* app = [UIApplication sharedApplication];
    NSArray*    oldNotifications = [app scheduledLocalNotifications];

    // Clear out the old notification before scheduling a new one.
    if ([oldNotifications count] > 0)
        [app cancelAllLocalNotifications];

    // Create a new notification.
    UILocalNotification* alarm = [[UILocalNotification alloc] init];
    if (alarm)
    {
        alarm.fireDate = theDate;
        alarm.timeZone = [NSTimeZone defaultTimeZone];
        alarm.repeatInterval = 0;
        alarm.soundName = @"alarmsound.caf";
        alarm.alertBody = @"Time to wake up!";

        [app scheduleLocalNotification:alarm];
    }
}

您可以在 Apple 的文档“App States and Multitasking”中找到很多有用的信息,特别是在“Background Execution and Multitasking”部分(它完全涵盖了您的用例)。

于 2013-04-04T16:04:48.253 回答