码迷,mamicode.com
首页 > 移动开发 > 详细

iOS

时间:2018-07-05 17:34:49      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:nbsp   str   red   系统   white   normal   with   string   ble   

有时候我们需要跳转到蓝牙设置页面,而且跟随系统的变化而变化,需要加版本判断,下面是用到的方法

if (@available(iOS 11.0, *)) 

      {

NSURL *url= [NSURL URLWithString:@"App-Prefs:root=General&path=Bluetooth"];

[[UIApplication sharedApplication] openURL:url options:@{} completionHandler:nil];

     }else{

NSURL *url = [NSURL URLWithString:@"App-Prefs:root=Bluetooth"];

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

  [[UIApplication sharedApplication]openURL:url];

       }

}


iOS

标签:nbsp   str   red   系统   white   normal   with   string   ble   

原文地址:http://blog.51cto.com/smengxiang/2136739

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