我正在尝试保存记录CloudKit,但是我从cloudkit中收到以下错误:
error saving record este es error: Error saving record <CKRecordID: 0x7fef15b5d2a0; 2:(_defaultZone:__defaultOwner__)> to server: WRITE operation not permitted
这是我尝试保存记录的方式:
[publicDatabase saveRecord:recordContent completionHandler:^(CKRecord *record, NSError *error){
if (!error)
{
NSLog(@"saved!!!");
}
else
{
if ([[error.userInfo valueForKey:@"ErrorDescription"] isEqualToString:@"record to insert already exists"])
{
NSLog(@"record already exist %@",[error.userInfo valueForKey:@"ErrorDescription"]);
}
NSLog(@"error saving record : %@",error.localizedDescription);
}
}];
但是在我检查cloudkit是否可用之前:
[myContainer accountStatusWithCompletionHandler:^(CKAccountStatus accountStatus, NSError *error)
{
NSLog(@" no error but status %ld",accountStatus);
if (((accountStatus == 3) || (accountStatus == 2)) && (!error))
{
NSLog(@" no error but status %ld",accountStatus);
// typedef NS_ENUM(NSInteger, CKAccountStatus) {
// /* An error occurred when getting the account status, consult the corresponding NSError */
// CKAccountStatusCouldNotDetermine = 0,
// /* The iCloud account credentials are available for this application */
// CKAccountStatusAvailable = 1,
// /* Parental Controls / Device Management has denied access to iCloud account credentials */
// CKAccountStatusRestricted = 2,
// /* No iCloud account is logged in on this device */
// CKAccountStatusNoAccount = 3,
//
// }
}
if (error)
{
NSLog(@" accountStatus error %@",error);
}
} ];
我在哪里获得状态1,即CKAccountStatusAvailable。
你们中的任何人都知道为什么会发生这种情况,直到最后一条记录都可以正常工作了,或者你们中的任何人都知道解决此问题的方法吗?
非常感谢您的帮助。
最佳答案
您需要设置权限,以允许用户写入(或删除)其他人创建的记录。您可以在开发环境中的“架构”,“记录类型”下选择特定的记录,然后在右侧的菜单中选择一个名为“安全性”的下拉菜单。授予“已验证”角色读写权限。然后部署到生产。
关于cocoa - Cloudkit: "error saving record WRITE operation not permitted",我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32192968/