IceCream
IceCream copied to clipboard
Sync Realm Database with CloudKit
Use latest RealmSwift v10.21.1. Example was updated, tested and seems to be working.
please replace function resumeLongLivedOperationIfPossible like this ``` func resumeLongLivedOperationIfPossible() { container.fetchAllLongLivedOperationIDs { [weak self]( opeIDs, error) in guard let self = self, error == nil, let ids = opeIDs else...
I am using CocoaPods with IceCream and get this error. " Terminating app due to uncaught exception 'RLMException', reason: 'RLMObject subclasses with the same name cannot be included twice in...
Currently, there are three suggested methods to install IceCream. I tried all of them. ### SPM SPM took long time and failed with could not downloading the core of Realm....
This is the initial version of a SwifUI based example on how to use IceCream / Realm with SwiftUI. See #207 I had to also update the Package.swift to iOS...
Is it possible to display the status to the user in UI such as "Syncing please wait" or "Last synced at (time)"?
Added a static property to `CreamAsset` to allow changing the default directory to save CreamAssets too. This is needed if you want to use App Groups and need to use...
In my current usage, Int64 list proprieties is getting lost during sync. This PR enable native List support.
## Expected behavior save multi images in List with CreamAsset code could be like: `let images = List()` ``` if let images = try? self.imagesRelay.value(){ var cout = 0 for...