您的位置:首页 > 其它

仿推特进入设置界面友好的指示提示框

2015-12-25 11:32 357 查看
用户可以根据APP的需要授权启用位置、通知、联系人、相机、日历以及健康等设置。大多数应用程序仅仅是弹出一个包含操作指令的警示窗口,如“进入设置>隐私>位置>OUR_APP”。例如,推特的应用程序有一个更为精致和友好的指示对话框(iOS 8以上比较适用)

UIAlertController *settingAlertController = [UIAlertController alertControllerWithTitle:@"sad emoil face" message:@"go setting" preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction *settingAction = [UIAlertAction actionWithTitle:@"setting" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
NSURL *url = [NSURL URLWithString:UIApplicationOpenSettingsURLString];
if ([[UIApplication sharedApplication]canOpenURL:url]) {
[[UIApplication sharedApplication]openURL:url];
}
}];
[settingAlertController  addAction:settingAction];

UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:@"cancel" style:UIAlertActionStyleCancel handler:nil];
[settingAlertController  addAction:cancelAction];
[self presentViewController:settingAlertController  animated:YES completion:nil];
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: