无意中安装了钉钉,发现现在把提示的通知关闭后,进入首页会弹出来一个手动打开通知的办法,感觉以后也可能会遇见,分享大家下,先看一下钉钉的页面。
先看一下代码
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:^{
}];
希望大家能用上。。。