ios - App Delegate的应用程序:didReceiveLocalNotification: not called

标签 ios objective-c uilocalnotification appdelegate

在我的应用程序委托(delegate)中,永远不会调用方法 - (void)application:(UIApplication *)application didReceiveLocalNotification: (UILocalNotification *)notification

这就是我创建通知的方式:

UILocalNotification *notification = [[UILocalNotification alloc] init];
// set UUID, which we will store in userDefaults for later
NSMutableDictionary *myUserInfo = [[NSMutableDictionary alloc] init];
NSString *uuid = [[NSProcessInfo processInfo] globallyUniqueString];
[myUserInfo setValue:uuid forKey:KEY_UUID];
[myUserInfo setValue:@"month" forKey:KEY_UNIT];
[myUserInfo setObject:@YES forKey:KEY_RESCHEDULE];
NSInteger row = [_wurmProphylaxePickerView selectedRowInComponent:0];
switch (row) {
    case 0:
        [myUserInfo setValue:@2 forKey:KEY_FREQUENCY];
        break;
    case 1:
        [myUserInfo setValue:@4 forKey:KEY_FREQUENCY];
        break;
    case 2:
        [myUserInfo setValue:@6 forKey:KEY_FREQUENCY];
        break;
    default:
        [myUserInfo setValue:@4 forKey:KEY_FREQUENCY];
        break;
}
notification.userInfo = myUserInfo;
// calculate date for next notification, depends on the user's selection
NSDate *today = [NSDate date];
NSCalendar *calendar = [NSCalendar currentCalendar];
NSDateComponents *myComps = [[NSDateComponents alloc] init];
[myComps setMinute:1];
notification.fireDate = [calendar dateByAddingComponents:myComps toDate:today options:0];
notification.timeZone = [NSTimeZone localTimeZone];
notification.alertBody = @"My alertBody";
[[UIApplication sharedApplication] scheduleLocalNotification:notification];

这是在我的应用程序委托(delegate)中,但从未被调用:

- (void)application:(UIApplication *)application didReceiveLocalNotification:    (UILocalNotification *)notification
{
    NSDictionary *userInfo = notification.userInfo;
    BOOL repeat = [[userInfo objectForKey:KEY_RESCHEDULE] boolValue];
    if (repeat)
    {
        NSInteger frequency = (NSInteger)[userInfo objectForKey:KEY_FREQUENCY];
        NSString *unit = (NSString *)[userInfo objectForKey:KEY_UNIT];
        NSString *uuid = (NSString *)[userInfo objectForKey:KEY_UUID];

        // calculate date for next notification
        NSDate *today = [NSDate date];
        NSCalendar *calendar = [NSCalendar currentCalendar];
        NSDateComponents *myComps = [[NSDateComponents alloc] init];
        if ([unit isEqualToString:@"month"]) {
            //[myComps setMonth:frequency];
            [myComps setMinute:frequency];
        } else {

        }

        // create new notification
        UILocalNotification *newNotification = [[UILocalNotification alloc] init];
        newNotification.fireDate = [calendar dateByAddingComponents:myComps toDate:today options:0];
        newNotification.timeZone = [NSTimeZone localTimeZone];
        newNotification.alertAction = notification.alertAction;
        newNotification.alertBody = notification.alertBody;
        newNotification.userInfo = notification.userInfo;

        // schedule it
        [[UIApplication sharedApplication] scheduleLocalNotification:newNotification];     
    }
}

在 iOS 8 上测试,不确定 iOS 7...

最佳答案

如果通知触发时应用程序未处于事件状态,您可以在 didFinishLaunchingWithOptions 中处理此问题,如 Local and Push Notifications Programming Guide处理本地和远程通知部分中的示例所示:

- (BOOL)application:(UIApplication *)app didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    UILocalNotification *localNotif =
        [launchOptions objectForKey:UIApplicationLaunchOptionsLocalNotificationKey];
    if (localNotif) {
        NSString *itemName = [localNotif.userInfo objectForKey:ToDoItemKey];
        [viewController displayItem:itemName];  // custom method
        app.applicationIconBadgeNumber = localNotif.applicationIconBadgeNumber-1;
    }
    [window addSubview:viewController.view];
    [window makeKeyAndVisible];
    return YES;
}

如果通知触发时应用程序处于事件状态,则会调用 didReceiveLocalNotification

关于ios - App Delegate的应用程序:didReceiveLocalNotification: not called,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28073152/

相关文章:

ios - 错误关于未定义的方法 `map' for nil :NilClass for Flutter App/CocoaPod Error

ios - 使用 ReactiveCocoa 观察 NSArray 中的对象变化

ios - 错误发生在一个项目中,而不是部分复制的第二个项目中。与播放多媒体相关

ios - 确定用户是否允许 iOS 7 中的本地通知

ios - Swift iOS 9.2 中的每日本地通知

ios - 是否可以为选定的社交媒体提供 Branch.io 深度 View ?

iPhone:在循环中创建 NSString 时出现巨大的内存峰值

ios - UIImageview 动画开始使用 for-in 循环和动画延迟

ios - 如何在 objective-c 中调用的方法中传递五个值

ios - IOS开发中View Controller之间共享对象状态