从iOS 11中的应用程序打开“设置”应用中的特定项目

时间:2018-02-13 16:28:05

标签: ios swift ios11

我已经研究了几个答案,但没有发现任何适用于iOS 11的答案。

我想展示为我的用户切换后台应用刷新的方法。要做到这一点 我想从我的应用中打开Settings/General/Background App Refresh菜单。 以下代码仅打开“设置”应用的根菜单。

guard let url = URL(string: "App-Prefs:root=General&path=BACKGROUND_APP_REFRESH") else { return }

UIApplication.shared.open(url, options: [:], completionHandler: nil)

Apple有什么方法可以做到这一点吗?

1 个答案:

答案 0 :(得分:1)

如果您打开网址UIApplicationOpenSettingsURLString,那么您将获得应用的设置,其中包括后台应用刷新功能。