iOS8跳到系统设置页面

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

NSURL *url = [NSURL URLWithString:UIApplicationOpenSettingsURLString];url

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

        [[UIApplication sharedApplication] openURL:url];string

    }it

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

相关文章
相关标签/搜索