美文网首页
iOS8 通知设置

iOS8 通知设置

作者: 天下只有一个 | 来源:发表于2017-02-07 15:02 被阅读84次

    无意中安装了钉钉,发现现在把提示的通知关闭后,进入首页会弹出来一个手动打开通知的办法,感觉以后也可能会遇见,分享大家下,先看一下钉钉的页面。

    先看一下代码

    if ([[UIApplication sharedApplication] currentUserNotificationSettings].types  == UIUserNotificationTypeNone){// 判断通知是否打开

    }

    跳转方法

    UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"提示" message:@"你现在无法收到新消息通知,请到系统“设置”-“通知”-“QQ“中开启"  preferredStyle:UIAlertControllerStyleAlert];

    [alertController addAction:[UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault  handler:^(UIAlertAction *action)

    {

    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:UIApplicationOpenSettingsURLString]];

    }]];

    [alertController addAction:[UIAlertAction actionWithTitle:@"不再提示" style:UIAlertActionStyleCancel  handler:^(UIAlertAction *action)

    {

    }]];

    [self presentViewController:alertController animated:YES completion:^{

    }];

    希望大家能用上。。。

    相关文章

      网友评论

          本文标题:iOS8 通知设置

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