美文网首页
判断用户通知

判断用户通知

作者: LJ的ios开发 | 来源:发表于2017-03-28 16:47 被阅读6次

    判断用户通知

    UIUserNotificationSettings *setting = [[UIApplication sharedApplication] currentUserNotificationSettings];
         if (UIUserNotificationTypeNone != setting.types) {
               NSLog(@"打开通知");
         } else {
             NSLog(@"未打开通知");
         }
    

    相关文章

      网友评论

          本文标题:判断用户通知

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