可以从iCloud驱动器下载文件吗?

时间:2015-02-23 10:54:46

标签: ios objective-c ios8 icloud icloud-drive

假设我们有一个名为" myImage.png"的图像文件。我通过网站www.icloud.com在iCloud驱动器上添加了这个文件。

为此,我测试了许多代码,例如thisthis,最后尝试使用命令 startDownloadingUbiquitousItemAtURL ,但没有一个工作(我只能在下载文件时使用存在于以下路径中:)

  

/用户/ mynamemac /库/开发商/ CoreSimulator /设备/ 07BAC437-D32A-44BB-BC25-5683222B7516 /数据/库/移动%20Documents /

知道我想将文件存储在我的i​​Cloud Drive中并保存在我的目录中,如何下载此文件并保存在我的设备上?

1 个答案:

答案 0 :(得分:2)

通常,您应首先打开iCloud驱动器,将其添加到info.plist文件中。

<key>NSUbiquitousContainers</key>
<dict>
    <key>iCloud.com.example.MyApp</key>
    <dict>
        <key>NSUbiquitousContainerIsDocumentScopePublic</key>
        <true/>
        <key>NSUbiquitousContainerSupportedFolderLevels</key>
        <string>Any</string>
        <key>NSUbiquitousContainerName</key>
        <string>MyApp</string>
    </dict>
</dict>

然后,您应该在项目的iCloud标签下打开CapabilitesXCode会自动为您添加权利 您可以使用此代码检查您是否可以访问iCloud [[NSFileManager defaultManager] URLForUbiquityContainerIdentifier:nil];
有关详细信息,请参阅iCloud Design Guide