-1

我正在尝试创建一个数据库,管理员用户可以在其中创建一个存储为组 CKRecord 类型的组。我希望将此记录放置一个自定义区域,该区域以管理员用户决定的组名命名。如何初始化要分配给该自定义区域的组私有记录(不使用已弃用的函数)。

func createGroup(groupName: String){

    let groupRecord = CKRecord(recordType: recordTypes.group)


    groupRecord[groupRecordType.groupName] = groupName
    let share = CKShare(rootRecord: groupRecord)
    share.publicPermission = .readWrite

    let groupZone = CKRecordZone(zoneName: groupName)

    //Need to somehow connect the groupZone to the groupRecord

 }
4

1 回答 1

2

您可以使用不同的 CKShare 初始化程序:

CKShare(rootRecord: CKRecord, shareID: CKRecord.ID)

recordZone 是 CKRecord.ID 的一部分:

CKRecord.ID(recordName: String, zoneID: CKRecordZone.ID)

所以更像是:

func createGroup(groupName: String){

    let groupRecord = CKRecord(recordType: recordTypes.group)

    groupRecord[groupRecordType.groupName] = groupName

    let groupZone = CKRecordZone(zoneName: groupName)

    let shareID = CKRecord.ID(recordName: groupName, zoneID: groupZone)

    let share = CKShare(rootRecord: groupRecord, shareID: shareID)

    share.publicPermission = .readWrite
}

但是,recordName 应该保证是唯一的 - 否则您可能会遇到问题。

于 2019-03-27T12:08:40.713 回答