The correct position of the jump system setting for iOS10 development, and the jump system setting for ios10
All redirects supported by iOS10 are available for test (test systems: 10.2.1 and 9.3.1)
| Jump |
Writing Method |
| Wireless LAN |
App-Prefs: root = WIFI |
| Bluetooth |
App-Prefs: root = Bluetooth |
| Cellular Mobile Network |
App-Prefs: root = MOBILE_DATA_SETTINGS_ID |
| Personal hotspot |
App-Prefs: root = INTERNET_TETHERING |
| Operator |
App-Prefs: root = Carrier |
| Notification |
App-Prefs: root = icationications_id |
| General |
App-Prefs: root = General |
| General-about Local Machine |
App-Prefs: root = General & path = About |
| General-keyboard |
App-Prefs: root = General & path = Keyboard |
| General-Auxiliary Functions |
App-Prefs: root = General & path = ACCESSIBILITY |
| General-language and region |
App-Prefs: root = General & path = INTERNATIONAL |
| General-restoration |
App-Prefs: root = Reset |
| Wallpaper |
App-Prefs: root = Wallpaper |
| Siri |
App-Prefs: root = SIRI |
| Privacy |
App-Prefs: root = Privacy |
| Safari |
App-Prefs: root = SAFARI |
| Music |
App-Prefs: root = MUSIC |
| Music-balancer |
App-Prefs: root = MUSIC & path = com. apple. Music: EQ |
| Photos and cameras |
App-Prefs: root = Photos |
| FaceTime |
App-Prefs: root = FACETIME |
NSURL * url = [NSURL URLWithString: @ "App-Prefs: root = Bluetooth"];
If ([[UIApplication sharedApplication] canOpenURL: url]) {
If (@ available (iOS 10.0 ,*)){
[[UIApplication sharedApplication] openURL: url options :@{} completionHandler: nil];
} Else {
[[UIApplication sharedApplication] openURL: url];
}
} Else {
[SVProgressHUD showInfoWithStatus: @ "enable Bluetooth manually"];
}