ios - 可以从 iCloud 驱动器下载文件吗?
<p><p>假设我们有一个名为“myImage.png”的图像文件,我通过网站 www.icloud.com 在我的 iCloud 驱动器上添加了这个文件。</p>
<p>为此,我测试了许多代码,例如 <a href="http://www.raywenderlich.com/6015/beginning-icloud-in-ios-5-tutorial-part-1" rel="noreferrer noopener nofollow">this</a> , <a href="https://stackoverflow.com/questions/9760236/method-for-downloading-icloud-files-very-confusing" rel="noreferrer noopener nofollow">this</a> ,最后尝试使用命令 <strong>startDownloadingUbiquitousItemAtURL</strong> 并且它们都不起作用(我只能在下面的此路径中存在文件时下载文件:)</p>
<blockquote>
<p>/Users/mynamemac/Library/Developer/CoreSimulator/Devices/07BAC437-D32A-44BB-BC25-5683222B7516/data/Library/Mobile%20Documents/</p>
</blockquote>
<p>知道我想将文件存储在我的 iCloud Drive 中并保存在我的目录中,我该如何下载这个文件并保存在我的设备上?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>一般情况下,您应该先打开 iCloud 驱动器,将其添加到您的 <code>info.plist</code> 文件中。</p>
<pre><code><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>
</code></pre>
<p>然后,您应该在项目的 <code>Capabilites</code> 选项卡下打开 <code>iCloud</code>。 <code>XCode</code> 会自动为你添加权限。<br/>
您可以使用此代码检查您是否可以访问 iCloud。<br/>
<code>[ URLForUbiquityContainerIdentifier:nil];</code><br/>
您应该引用 <a href="https://developer.apple.com/library/prerelease/ios/documentation/General/Conceptual/iCloudDesignGuide/iCloudDesignGuide.pdf" rel="noreferrer noopener nofollow">iCloud Design Guide</a>了解更多信息。 </p></p>
<p style="font-size: 20px;">关于ios - 可以从 iCloud 驱动器下载文件吗?,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/28672098/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/28672098/
</a>
</p>
页:
[1]