我需要从我的应用程序中打开“文件”应用程序。这是内部应用程序,不会在应用程序商店中使用,因此我不必担心尝试使用私有URL。
我尝试过
"App-Prefs:root=files"
"App-Prefs:root=FILES"
"App-Prefs:root=Files"
在
let url = URL.init(string: "App-Prefs:root=Files")!
UIApplication.shared.open(url, options: [:]) { (Bool) in
print("opened")
}
根据字符串,它将不会打开任何内容或打开设置应用程序。