我想点击一个按钮打开蓝牙设置页面。目前,它正在打开常规页面。
我正在为此做点:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs:root=Bluetooth"]];
答案 0 :(得分:0)
现在您只能打开当前的应用设置,抱歉..... https://developer.apple.com/library/ios/releasenotes/General/WhatsNewIniOS/Articles/iOS8.html
你可以通过
打开/关闭蓝牙BluetoothManager *manager = [BluetoothManager sharedInstance];
[manager setEnabled:![manager enabled]];
答案 1 :(得分:0)