使用NSURL Swift打开Safari设置

时间:2015-09-25 09:46:40

标签: ios swift nsurl

是否可以使用NSURL链接打开Safari应用设置?

以下是我用于常规设置的代码

UIApplication.sharedApplication().openURL(NSURL(string: UIApplicationOpenSettingsURLString)!)

我应该如何修改它 - 如果可能的话?

谢谢!

1 个答案:

答案 0 :(得分:3)

我找到了这篇文章:Call the official *Settings* app from my app on iPhone

从该帖子开始,请按照以下两个步骤操作:

首先转到信息 - > URL类型并将URL方案添加为prefs,如下图所示:

enter image description here

之后使用此代码进行打开的safari设置:

UIApplication.sharedApplication().openURL(NSURL(string: "prefs:root=Safari")!)

结果将是:

enter image description here