應用程序調用系統設置,並進入相關的設置項html
1.在iOS 5.1之前ios
能夠使用URLs schemes,直接用openURL:打開app
例如:iphone
NSURL*url=[NSURL URLWithString:@"prefs:root=LOCATION_SERVICES"];測試
[[UIApplication sharedApplication] openURL:url];url
prefs:root=LOCATION_SERVICES 這就是URL 打開位置服務spa
相應的打開其餘的 可搜素關鍵詞」iOS 調用系統設置」rest
或者code
請見:htm
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字段
此方法只能進入設置 不能進入更深一層的界面
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/