从 iOS 应用程序打开“设置”(深层内容)
您可能听说过苹果公司在 iOS 5.1 Beta 中“杀死”了 Settings.app URL 方案,该方案于上个月向所有人公开。
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs:root=..."]]
不再有效。 也许他们使用某些东西而不是“openURL”或者什么?
我还听说有一些私有API,用于企业开发(但已从devforums删除),与大家使用的相同还是不同?
是否有其他私有API可以打开Settings.app?
As you may have heard Apple "killed" Settings.app URL scheme in iOS 5.1 Beta, which became public to everyone last month.
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs:root=..."]]
no longer works.
Maybe they use something instead of "openURL" or what?
I have also heard that there is some private API, which is used for Enterprise development (but it's deleted from devforums), is it the same as everyone using or different?
Is there other private API which can open Settings.app?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您看过InAppSettingsKit吗?
Have you looked at InAppSettingsKit?