美文网首页
极光推送,app处于前台的时候,如何拒绝收到推送通知

极光推送,app处于前台的时候,如何拒绝收到推送通知

作者: 可乐小子 | 来源:发表于2020-12-11 14:29 被阅读0次
  • (void)jpushNotificationCenter:(UNUserNotificationCenter *)center willPresentNotification:(UNNotification *)notification withCompletionHandler:(void (^)(NSInteger))completionHandler {
    // Required
    NSDictionary * userInfo = notification.request.content.userInfo;
    if([notification.request.trigger isKindOfClass:[UNPushNotificationTrigger class]]) {
    [JPUSHService handleRemoteNotification:userInfo];
    }
    completionHandler(UNNotificationPresentationOptionAlert); // 需要执行这个方法,选择是否提醒用户,有 Badge、Sound、Alert 三种类型可以选择设置
    }

把极光推送的这个方法注掉就可以了

相关文章

网友评论

      本文标题:极光推送,app处于前台的时候,如何拒绝收到推送通知

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