apple / apple/sample-cloudkit-sync-engine
What is the analogue to CKSyncEngine for public databases
- Dominant language
- Swift
- Stars
- 270
- Forks
- 15
- PR merge metrics
- No merged PRs in 30d
Description
I modified this piece:
```
func initializeSyncEngine() {
var configuration = CKSyncEngine.Configuration(
database: Self.container.publicCloudDatabase, // <<<<<<<<<<<<<<<<<<<<< THIS
stateSerialization: self.appData.stateSerialization,
delegate: self
)
```
And hit the error:
```
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'CKSyncEngine cannot be used in the Public database'
*** First throw call stack:
```
So I read (quickly 😄 ) the documentation and noticed this tid-bit:
So, basically my question is , what is the alternative to `CKSyncEngine` providing the easiest way to sync a local database with the remote public iCloud?
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.