5.x 中不可用。但我看到一些可以使用这个的应用程序(转到设置)(iOS7)。有什么办法吗?它在 Xcode 6 中可用吗? Facebo-6ren">
gpt4 book ai didi

ios - URL 方案 "Open Settings"ios

转载 作者:IT王子 更新时间:2023-10-29 08:06:57 24 4
gpt4 key购买 nike

我知道这个问题已经被问过很多次了。答案说这在 Xcode > 5.x 中不可用。但我看到一些可以使用这个的应用程序(转到设置)(iOS7)。有什么办法吗?它在 Xcode 6 中可用吗? Facebook 可以同时检测蜂窝数据和 wifi

enter image description here enter image description here

最佳答案

从 iOS 8 开始,可以通过这种方式启动直接打开“隐私”应用部分的“设置”应用:

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:UIApplicationOpenSettingsURLString]];

在 Swift 中:

if let settingsURL = NSURL(string: UIApplicationOpenSettingsURLString) {
UIApplication.sharedApplication().openURL(settingsURL)
}

在 Swift 3.0 中:

if let settingsURL = URL(string: UIApplicationOpenSettingsURLString + Bundle.main.bundleIdentifier!) {
UIApplication.shared.openURL(settingsURL as URL)
}

关于ios - URL 方案 "Open Settings"ios,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25988241/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com