0

我有一个基本的 iOS 8 应用程序,它在应用程序的 iCloud 容器和 iCloud Drive 中列出了用户的文档。

我的问题是,直接在 iCloud Drive(Finder → Go → iCloud Drive)中的文档不包含在元数据查询的结果中。该查询仅在应用程序的 iCloud 容器Documents文件夹中返回结果。

我像这样初始化查询:

self.query = [NSMetadataQuery new];
self.query.searchScopes = @[NSMetadataQueryUbiquitousDataScope,
   NSMetadataQueryUbiquitousDocumentsScope,
   NSMetadataQueryAccessibleUbiquitousExternalDocumentsScope]; // iCloud Drive

权利如下所示:

<key>com.apple.developer.ubiquity-container-identifiers</key>
<array>
    <string>$(TeamIdentifierPrefix)com.my.app</string>
    <string>iCloud.com.my.app</string>
</array>

更奇怪的是:iCloud Drive 中的一些文档有时会出现,但如果我将它们从 iCloud Drive 中移出并重新移入,它们就不再显示了。

4

2 回答 2

2

弄清楚了。iCloud Drive 文档不在应用程序的容器中,因此不包含在元数据查询结果中,因为应用程序无法访问外部文件。

使用文档选择器打开文档后,应用程序就可以访问该文档,并且从那时起它将成为元数据查询结果的一部分(直到用户将其移出 iCloud Drive)。

我观察到的另一件事:如果用户在 Mac 上将文档从 iCloud Drive 中移出,则元数据查询将不会在 iOS 上收到更新。尝试在 iOS 上打开文档只会导致错误(找不到文件)。

于 2015-04-03T07:14:05.150 回答
0

我还想直接在 iCloud 驱动器中获取文件和目录。我发现一个名为“文档 5”的 APP 已经完成了这个。这是我的问题:iCloud Drive list commands and files through NSMetadataQuery

于 2015-08-08T10:34:14.247 回答