菜鸟教程小白 发表于 2022-12-13 04:03:50

ios - 如何以编程方式检查 iCloud Drive 是否已激活


                                            <p><p>如果用户激活了 iCloud Drive,有没有办法检查 OS X 和 IOS?不是文档和数据选项,而是新的 iCloud Drive ? </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>如果您想在您的应用程序中使用 iCloud,<a href="https://developer.apple.com/library/ios/documentation/Miscellaneous/Conceptual/CloudKitQuickStart/Introduction/Introduction.html" rel="noreferrer noopener nofollow">you&#39;ll need to get to know CloudKit</a> .</p>

<p>您的用户不仅需要启用 iCloud,还需要授予您的应用程序访问 iCloud 中文件的权限。</p>

<p>要了解该权限是否已被授予(或什至可能),您可能最需要的 API 在 CloudKit 中:</p>

<p> <a href="https://developer.apple.com/library/ios/documentation/CloudKit/Reference/CKContainer_class/index.html#//apple_ref/occ/instm/CKContainer/accountStatusWithCompletionHandler:" rel="noreferrer noopener nofollow"><code>accountStatusWithCompletionHandler</code></a>其中包括以下帐户状态结果:</p>

<pre><code>typedef enum : NSInteger{
   CKAccountStatusCouldNotDetermine= 0,
   CKAccountStatusAvailable= 1,
   CKAccountStatusRestricted= 2,
   CKAccountStatusNoAccount= 3,
} CKAccountStatus;
</code></pre>

<p>此 API 仅适用于 iOS 8 和 MacOS 10.10 (Yosemite) 及更高版本。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何以编程方式检查 iCloud Drive 是否已激活,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/27575980/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/27575980/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何以编程方式检查 iCloud Drive 是否已激活