在iOS上的另一个应用程序中找不到用于打开文件应用程序的私有URL

时间:2019-04-17 17:50:05

标签: swift cydia-substrate

我需要从我的应用程序中打开“文件”应用程序。这是内部应用程序,不会在应用程序商店中使用,因此我不必担心尝试使用私有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")
}

根据字符串,它将不会打开任何内容或打开设置应用程序。

1 个答案:

答案 0 :(得分:1)

根据this线程,可以将shareddocuments://用作URLScheme,以打开“文件”应用程序。您可以在this文档的“使用URL方案与Apps进行通信”部分中详细了解如何使用URLSchemes