美文网首页生活iOS&Xcode奇技淫巧Mark
【从0开发搭建App】IOS拉起系统设置

【从0开发搭建App】IOS拉起系统设置

作者: 艾伦噢耶 | 来源:发表于2015-04-27 20:21 被阅读3360次

iOS5.1+之后跳转setting页面的方式都失效了,不过在iOS8苹果有提供了一个键值允许app跳转到setting页面,具体代码如下:

NSURL *url = [NSURL URLWithString:UIApplicationOpenSettingsURLString];

if ([[UIApplication sharedApplication] canOpenURL:url]) {

[[UIApplication sharedApplication] openURL:url];

}

实际的url string是@"app-settings:",当在其后面追加子section(例如"Bluetooth", "GENERAL"),也只能跳到系统设置首页

相关文章

网友评论

    本文标题:【从0开发搭建App】IOS拉起系统设置

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