2014-12-20 127 views

回答

1

如果您想在您的應用中使用iCloud,請撥打you'll need to get to know CloudKit

您的用戶不僅需要啓用iCloud,還需要爲您的應用程序授予訪問iCloud中文件的權限。

,並找出是否該權限被授予(或者甚至有可能),你可能最需要的API是CloudKit:

accountStatusWithCompletionHandler包括這些帳戶狀態的結果:

typedef enum : NSInteger { 
    CKAccountStatusCouldNotDetermine = 0, 
    CKAccountStatusAvailable = 1, 
    CKAccountStatusRestricted = 2, 
    CKAccountStatusNoAccount = 3, 
} CKAccountStatus; 

此API僅適用於iOS 8和MacOS 10.10(優勝美地)及更新版本。

相關問題