最近計(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"]
//日期與時(shí)間
[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"]