Sync between iCloud and Realm
- Sync betweens different device
- Share
- Offline
- Resolve conflict
- Multi table
- CKAsset
- Stable API
- Documentation
- Same device different iCloud account
- Background long task
- iOS 10.0
- swift 4.0
- Xcode 9.0
- model
@objc(SimpleNote)
class SimpleNote: SyncBaseModel {
@objc dynamic var title: String = ""
}
- AppDelegate
application.registerForRemoteNotifications()
syncEngine.register(models: [SimpleNote.self])
syncEngine.start()
- Sync
syncEngine.sync()
github "purkylin/SyncEngine"