我需要在IOS9.0
中打开蓝牙设置菜单。下一步打开设置菜单OK!,
UIApplication.sharedApplication().openURL(NSURL(string: UIApplicationOpenSettingsURLString)!)
但我需要打开
尝试的蓝牙设置菜单UIApplication.sharedApplication().openURL(NSURL(string: "prefs:root=General&path=Bluetooth")!)
不起作用
任何人都可以帮助我?
答案 0 :(得分:5)
路易斯实际上找到了答案,但我一开始就读过它,因为我没有看到答案。
<强>答案:强> 转到您的XCode项目,在Info - &gt;下网址类型部分 - &gt; &#34;首选项&#34;在URL Scheme
中在IOS9中:let url = NSURL(string: "prefs:root=Bluetooth")!
IOS8:let url = NSURL(string: "prefs:root=General&path=Bluetooth")!
答案 1 :(得分:-1)
您无法在iOS 10中打开蓝牙设置。
以下是我打开设置的建议(swift 3)
let url = URL(string: UIApplicationOpenSettingsURLString)!
UIApplication.shared.openURL(url)