UILocalNotification issue with iOS9

前端 未结 4 1261
不思量自难忘°
不思量自难忘° 2021-02-20 14:38

Since iOS9, local notification aren\'t working properly. Sometimes users receive the notification, sometimes they just don\'t. My notifications are repeated daily. Any idea what

4条回答
  •  孤城傲影
    2021-02-20 15:18

    Include the below code in Appdelegate.m

    if(IS_OS_8_OR_LATER)
    {
        UIUserNotificationType types = UIUserNotificationTypeSound | UIUserNotificationTypeAlert | UIUserNotificationTypeBadge;
        UIUserNotificationSettings *mySettings = [UIUserNotificationSettings settingsForTypes:types categories:nil];
        [[UIApplication sharedApplication] registerUserNotificationSettings:mySettings];
    }
    

提交回复
热议问题