1. 程式人生 > >iOS 跳轉系統功能

iOS 跳轉系統功能

ssi wallpaper apple ace obi hot mobile paper set

 1 NSString * urlString = @"App-Prefs:root=WIFI";
 2  
 3 if ([[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:urlString]]) {
 4  
 5     if ([[UIDevice currentDevice].systemVersion doubleValue] >= 10.0) {
 6  
 7     [[UIApplication sharedApplication] openURL:[NSURL URLWithString:urlString] options:@{} completionHandler:nil];
8 9 } else { 10 11 [[UIApplication sharedApplication] openURL:[NSURL URLWithString:urlString]]; 12 13 } 14 15 } 16 17 18 類似也有跳轉到以下: 19 20 無線局域網 App-Prefs:root=WIFI 21 22 藍牙 App-Prefs:root=Bluetooth 23 24 蜂窩移動網絡 App-Prefs:root=MOBILE_DATA_SETTINGS_ID 25 26 個人熱點 App-Prefs:root=INTERNET_TETHERING
27 28 運營商 App-Prefs:root=Carrier 29 30 通知 App-Prefs:root=NOTIFICATIONS_ID 31 32 通用 App-Prefs:root=General 33 34 通用-關於本機 App-Prefs:root=General&path=About 35 36 通用-鍵盤 App-Prefs:root=General&path=Keyboard 37 38 通用-輔助功能 App-Prefs:root=General&path=ACCESSIBILITY 39 40 通用-語言與地區 App-Prefs:root=General&path=INTERNATIONAL
41 42 通用-還原 App-Prefs:root=Reset 43 44 墻紙 App-Prefs:root=Wallpaper 45 46 Siri App-Prefs:root=SIRI 47 48 隱私 App-Prefs:root=Privacy 49 50 Safari App-Prefs:root=SAFARI 51 52 音樂 App-Prefs:root=MUSIC 53 54 音樂-均衡器 App-Prefs:root=MUSIC&path=com.apple.Music:EQ 55 56 照片與相機 App-Prefs:root=Photos 57 58 FaceTime App-Prefs:root=FACETIME 59 60 只需要把對應的字符串換一下就可以了。

iOS 跳轉系統功能