我已经研究了几个答案,但没有发现任何适用于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有什么方法可以做到这一点吗?