以下内容将被视为专用API吗?谷歌搜索后,我发现许多相互矛盾的报告。

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

还有没有人在设置应用程序中具有有效网址的列表?例如:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs://notifications"]];

将打开设置应用程序的通知页面。

最佳答案

我找到了自己问题的答案。

在iOS5中受支持。
URL方案可以在这里找到:http://maniacdev.com/2011/11/tutorial-using-url-schemes-to-open-the-settings-app-to-a-specific-page-in-ios-5/

关于ios - 打开设置应用程序,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8398863/

10-12 01:21