如何打开常规设置页面(主页,而不是应用设置)



我想将用户重定向到常规设置页面,而不是应用程序设置页面(具有权限等(。这可能吗,如果可能,如何?

试试这个!!

 let url = NSURL(string: UIApplicationOpenSettingsURLString)
 if UIApplication.shared.canOpenURL(url as! URL) {
        UIApplication.shared.openURL(url as! URL)
 }

要导航到特定页面,请检查此链接:单击按钮时如何打开手机设置 ios

尝试以下代码

 UIApplication.shared.open(URL(string:"App-Prefs:root=General")!, options: [:], completionHandler: nil)

相关内容

  • 没有找到相关文章

最新更新