我想點擊一個按鈕打開藍牙設置頁面。目前,它正在打開常規頁面。如何在ios9上按下按鈕時打開藍牙設置?
我做以下爲:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs:root=Bluetooth"]];
我想點擊一個按鈕打開藍牙設置頁面。目前,它正在打開常規頁面。如何在ios9上按下按鈕時打開藍牙設置?
我做以下爲:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs:root=Bluetooth"]];
現在你只能打開當前應用程序的設置,對不起..... https://developer.apple.com/library/ios/releasenotes/General/WhatsNewIniOS/Articles/iOS8.html
您可以通過
BluetoothManager *manager = [BluetoothManager sharedInstance];
[manager setEnabled:![manager enabled]];
開啓/關閉藍牙
從iOS9你可以opne設置應用程序,但我不認爲你可以直接打開藍牙窗口。對於開放設置,您可以使用'UIApplicationOpenSettingsURLString' –
請檢查本答案------> http://stackoverflow.com/a/34024467/475978 –