實(shí)現(xiàn)app界面跳轉(zhuǎn)到系統(tǒng)設(shè)置界面

最近計(jì)劃在app中實(shí)現(xiàn)跳轉(zhuǎn)到私隱設(shè)置界面的功能,剛好看到網(wǎng)友的分享,于是記錄一下

  NSString* phoneVersion = [[UIDevice currentDevice] systemVersion];
    if (phoneVersion.floatValue < 10.0) {
        //iOS10 以前使用
        [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"Tel://123456"]];
    }
    else {
        //iOS10 以后使用
        [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"Tel://123456"]
                                           options:@{}
                                 completionHandler:nil];
    }
//撥打電話
[NSURL URLWithString:@"tel://123456"] 
//發(fā)送短信
[NSURL URLWithString:@"sms://123456"]
//發(fā)郵件
[NSURL URLWithString:@"mailto://123456@163.com"]
//前往App Store
[NSURL URLWithString:@"itms-apps://"]
//使用Safari訪問網(wǎng)址
[NSURL URLWithString:@"http://www.baidu.com"]
//前往iBook
[NSURL URLWithString:@"itms-books://"]
//發(fā)起Facetime
[NSURL URLWithString:@"facetime://"]
//8、調(diào)用 地圖Map
[NSURL URLWithString:@"maps://"]
//9、調(diào)用 Music
[NSURL URLWithString:@"music://"]
//10、跳轉(zhuǎn)到系統(tǒng)設(shè)置相關(guān)界面
    // iOS10 以前
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs:root=LOCATION"] options:@{} completionHandler:nil];
    // iOS10 以后
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"App-Prefs:root=LOCATION"] options:@{} completionHandler:nil];

#pragma mark - 以下為跳轉(zhuǎn)設(shè)置的對應(yīng)方式
//設(shè)置
[NSURL URLWithString:UIApplicationOpenSettingsURLString]

//iCloud
[NSURL URLWithString:@"App-Prefs:root=CASTLE"]

//WIFI
[NSURL URLWithString:@"App-Prefs:root=WIFI"]

//藍(lán)牙
[NSURL URLWithString:@"App-Prefs:root=Bluetooth"]

//蜂窩數(shù)據(jù)
[NSURL URLWithString:@"App-Prefs:root=MOBILE_DATA_SETTINGS_ID"]

//通知
[NSURL URLWithString:@"App-Prefs:root=NOTIFICATIONS_ID"]

//通用
[NSURL URLWithString:@"App-Prefs:root=General"]
//關(guān)于手機(jī)
[NSURL URLWithString:@"App-Prefs:root=General&path=About"]
//輔助功能
[NSURL URLWithString:@"App-Prefs:root=General&path=ACCESSIBILITY"]
//日期與時間
[NSURL URLWithString:@"App-Prefs:root=General&path=DATE_AND_TIME"]
//鍵盤設(shè)置
[NSURL URLWithString:@"App-Prefs:root=General&path=Keyboard"]

//顯示與亮度
[NSURL URLWithString:@"App-Prefs:root=DISPLAY"]

//墻紙?jiān)O(shè)置
[NSURL URLWithString:@"App-Prefs:root=Wallpaper"]

//聲音
[NSURL URLWithString:@"App-Prefs:root=Sounds"] 

//Siri
[NSURL URLWithString:@"App-Prefs:root=Siri"]

//隱私
[NSURL URLWithString:@"App-Prefs:root=Privacy"]
//定位
[NSURL URLWithString:@"App-Prefs:root=Privacy&path=LOCATION"]

//電池電量
[NSURL URLWithString:@"App-Prefs:root=BATTERY_USAGE"]

//iTunes Store 與 App Store
[NSURL URLWithString:@"App-Prefs:root=STORE"]
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時請結(jié)合常識與多方信息審慎甄別。
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡書系信息發(fā)布平臺,僅提供信息存儲服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容