apple / sample-cloudkit-sharing

MIT License
287 stars 38 forks source link

Non Sendable Types #21

Open JCKL opened 1 year ago

JCKL commented 1 year ago

When I run this sample code In Xcode 14.3. I get the following warnings:

Until CKRecord, CKRecordZone become Sendable Types, what is a workaround for this sample code?

gongzhang commented 1 year ago
// DIRTY workaround ⚠️

extension CKRecord: @unchecked Sendable {
}

extension CKRecordZone: @unchecked Sendable {
}

I believe a better solution could be defining a sendable Contact struct and replacing the raw CKRecord in ViewModel.