标签: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];
}
}
标签:nbsp str red 系统 white normal with string ble
原文地址:http://blog.51cto.com/smengxiang/2136739