码迷,mamicode.com
首页 > 其他好文 > 详细

打开系统设置页

时间:2015-08-01 15:41:30      阅读:99      评论:0      收藏:0      [点我收藏+]

标签:

- (void) action_openSettings:(id)sender{
    if ([[UIDevice currentDevice]systemVersion].floatValue >= 8.0) {
        // 如果app没有Settings.bundle,则打开系统设置页,如果有,则打开应用对应的设置页
          [[UIApplication sharedApplication] openURL:[NSURL URLWithString:UIApplicationOpenSettingsURLString]];
    }else{
        //iOS 8版本以下
//        NSURL*url=[NSURL URLWithString:@"prefs:root=WIFI"];//wifi
          NSURL*url=[NSURL URLWithString:@"prefs:root=General&path=About"];//通用
        [[UIApplication sharedApplication] openURL:url];
    }
    
}

  

打开系统设置页

标签:

原文地址:http://www.cnblogs.com/killiancheung/p/4694123.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!