標籤:
應用程式調用系統設定,並進入相關的設定項
1.在iOS 5.1以前
可以使用URLs schemes,直接用openURL:開啟
例如:
NSURL*url=[NSURL URLWithString:@"prefs:root=LOCATION_SERVICES"];
[[UIApplication sharedApplication] openURL:url];
prefs:root=LOCATION_SERVICES 這就是URL 開啟位置服務
相應的開啟其他的 可搜素關鍵詞”iOS 調用系統設定”
或者
請見:
1.http://stackoverflow.com/questions/8246070/ios-launching-settings-restrictions-url-scheme?rq=1
2.http://blog.sina.com.cn/s/blog_983ef3f201011zel.html
2.在iOS 5.1以後
此方法被移除 詳細:http://www.idownloadblog.com/2011/11/29/iphone-5-1-disables-shortcuts/
需要手動設定URL shcemes
:
詳細:http://stackoverflow.com/questions/8246070/ios-launching-settings-restrictions-url-scheme?rq=1
3.iOS 8 以後
方法一:以上方法可用(測試環境:Xcode6.4 iOS8.4)
方法二:把URL 換成UIApplicationOpenSettingsURLString欄位
此方法只能進入設定 不能進入更深一層的介面
詳細: https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIApplication_Class/index.html#//apple_ref/doc/constant_group/Settings_Launch_URL
4’其中prefs 更改為app-settings 也可進入設定 但不能更深入
’
參考連結:
http://stackoverflow.com/questions/4496813/call-the-official-settings-app-from-my-app-on-iphone
http://stackoverflow.com/questions/8246070/ios-launching-settings-restrictions-url-scheme?rq=1
http://stackoverflow.com/questions/8246070/ios-launching-settings-restrictions-url-scheme
http://www.idownloadblog.com/2011/11/29/iphone-5-1-disables-shortcuts/
https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIApplication_Class/index.html#//apple_ref/doc/constant_group/Settings_Launch_URL
ios 調用系統設定,並進入相關的設定項