美文网首页
极光推送问题

极光推送问题

作者: kled_net | 来源:发表于2018-04-26 12:05 被阅读0次

    如果遇到 badge 的值一直在累加那么久需要调用极光的方法去重置:

    - (void)applicationWillEnterForeground:(UIApplication *)application {
        // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
        [UIApplication sharedApplication].applicationIconBadgeNumber = 0;
        [[UNUserNotificationCenter alloc] removeAllPendingNotificationRequests];
        [[UIApplication sharedApplication] cancelAllLocalNotifications];
        [JPUSHService resetBadge];
    }
    

    相关文章

      网友评论

          本文标题:极光推送问题

          本文链接:https://www.haomeiwen.com/subject/sbhixftx.html