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

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];

       }

}