在IOS中打开蓝牙设置菜单

时间:2015-10-15 06:37:15

标签: ios9 ios-bluetooth

我需要在IOS9.0中打开蓝牙设置菜单。下一步打开设置菜单OK!,

UIApplication.sharedApplication().openURL(NSURL(string: UIApplicationOpenSettingsURLString)!)

但我需要打开

尝试的蓝牙设置菜单
UIApplication.sharedApplication().openURL(NSURL(string: "prefs:root=General&path=Bluetooth")!)

不起作用

任何人都可以帮助我?

2 个答案:

答案 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)