gpt4 book ai didi

iOS 11 : How to get the location (File Provider) name of cloud-based file?

转载 作者:行者123 更新时间:2023-11-30 11:08:39 25 4
gpt4 key购买 nike

我的 iOS 11 应用使用 UIDocumentPickerViewController(在 .open 模式下)处理基于云的文件。获得 URL 后,如何获取存储该文件的位置(文件提供者)的名称? (例如“iCloud”、“Dropbox”等)

我最好的猜测是URLResourceValues.ubiquitousItemContainerDisplayName,但它似乎仅适用于 iCloud。

这是一个测试代码:

func documentPicker(_ controller: UIDocumentPickerViewController, didPickDocumentsAt urls: [URL]) {
guard let url = urls.first else { return }
let isAccessible = url.startAccessingSecurityScopedResource()
let res = try! url.promisedItemResourceValues(forKeys: [.ubiquitousItemContainerDisplayNameKey])
print("Container name: \(res.ubiquitousItemContainerDisplayName)")
if isAccessible {
url.stopAccessingSecurityScopedResource()
}
}

对于从 iCloud 选取的文件,它会打印“iCloud Drive”。但对于基于 Dropbox 的文件,容器名称为 nil

我错过了什么吗?还有别的办法吗?

最佳答案

这是不可能的。 Apple 不会让您获取此信息,以保护用户的隐私。

关于iOS 11 : How to get the location (File Provider) name of cloud-based file?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52433291/

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