在我的应用中的某个时刻,我想将用户重定向到官方设置应用。如果可能,我还想直接进入“设置”应用中的“位置”服务部分。
我见过
Call the official *Settings* app from my app on iPhone 但 在iPhone4中,以下代码无响应(我的ios版本5.1.1):
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs:root=LOCATION_SERVICES"]];//1 call Location service
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs:root=WIFI"]];//2 //call wifi
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs:root=General&path=Network"]];//3
答案 0 :(得分:1)
Apple从iOS 5.1开始删除了达到这些设置的功能。
答案 1 :(得分:-1)
http://www.inappsettingskit.com/
这就是你想要的。它需要设置包,并允许您直接在您的应用程序中使用。