打开iOS设置首选项(Opening IOS settings preferences)

2019-09-16 10:05发布

的具有1M在我的iPhone的iOS应用中打开的设置偏好的问题。 目前,我只是用一个简单的按钮来测试和它似乎并没有正常工作。

基本上,当我点击我要一个特定的设置首选项页面打开按钮。 这是林目前正在使用我的按钮IBAction为内:

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs:root=General"]];

希望你们能帮助我走出了一个解决方案,在此先感谢。

Answer 1:

尝试这个:

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs://"]];

应在iOS 5中工作

...更新:

opening with the prefs url was disabled in iOS 5.1

塞巴斯蒂安



文章来源: Opening IOS settings preferences