我的要求是 - 如果用户关闭了应用程序的通知,并且用户此时打开应用程序,则会提示应用程序的开启通知,并且当点击警报视图应用程序的正常按钮时将重定向到通知屏幕,用户只需点击开关按钮即可打开通知。
ios8 +有可能吗?
我想重定向此屏幕
由于
答案 0 :(得分:3)
此代码会将您重定向到通知设置。
if ([[UIApplication sharedApplication] currentUserNotificationSettings].types != UIUserNotificationTypeNone)
{
NSLog(@" Push Notification ON");
}
else
{
UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"Push Notification Service Disable ,please enable it." message:nil preferredStyle:UIAlertControllerStyleAlert];
[alertController addAction:[UIAlertAction actionWithTitle:@"Okay!" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action)
{
@try
{
NSLog(@"tapped ok");
BOOL canOpenSettings = (UIApplicationOpenSettingsURLString != NULL);
if (canOpenSettings)
{
NSURL *url = [NSURL URLWithString:UIApplicationOpenSettingsURLString];
[[UIApplication sharedApplication] openURL:url];
}
}
@catch (NSException *exception)
{
}
}]];
[self.view presentViewController:alertController animated:YES completion:^{}];
}
它将重定向到以下屏幕