我需要打开IOS9.0
中的蓝牙设置菜单。接下来打开设置菜单OK!
UIApplication.sharedApplication().openURL(NSURL(string: UIApplicationOpenSettingsURLString)!)
但是我需要打开蓝牙设置菜单尝试使用
UIApplication.sharedApplication().openURL(NSURL(string: "prefs:root=General&path=Bluetooth")!)
它不工作
有人能帮我吗?
Luis实际上找到了答案,但我一开始就忽略了它,因为我没有看到答案。
答:转到你的Xcode项目,在Info ->URL类型部分->"prefs"in URL Scheme
在iOS 9: let url = NSURL(string: "prefs:root=Bluetooth")!
iOS 8: let url = NSURL(string: "prefs:root=General&path=Bluetooth")!
iOS 10无法打开蓝牙设置
这是我的建议打开设置(swift 3)
let url = URL(string: UIApplicationOpenSettingsURLString)!
UIApplication.shared.openURL(url)