mirror of
https://github.com/JohnEstropia/CoreStore.git
synced 2026-01-13 20:53:32 +01:00
Do you have any plans to support CloudKit in the future (version 9.x.x?) #380
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @CocodingLee on GitHub (Nov 8, 2021).
at version 6.x.x delete CloudKit features , why ? and is there any plans to support it in future version , such as version 9.x.x ?
@JohnEstropia commented on GitHub (Jan 21, 2022):
Just to clarify, CloudKit was never supported in Core Store. What was removed in 6.x.x was support for iCloud Storage (i.e.
NSPersistentStoreUbiquitousContentNameKeyand friends), which was deprecated by Apple since iOS 10.@CocodingLee commented on GitHub (Jan 26, 2022):
So may I ask what is " CloudKit support" for which mentioned in road map section?
Prototyping stage
Widget/Extensions storage-sharing support
CloudKit support
@JohnEstropia commented on GitHub (Jan 26, 2022):
@CocodingLee Those are planned features but are in feasibility testing (thus Prototyping stage). At this point, CloudKit support is still unlikely since I am currently still playing with Widget/Extension shared stores (app groups)
@thebarndog commented on GitHub (Mar 7, 2022):
@JohnEstropia I think what people are looking for, at a minimum, is the support of
NSPersistentCloudKitContainerwhich handles all syncing to iCloud for you simply by changing fromNSPersistentContainertoNSPersistentCloudKitContainer. Unfortunately, it doesn't look likeCoreStoreuses the more modern container api at all so that may be a big ask but it's been available since iOS 13 so it may be worth prioritizing.@JohnEstropia commented on GitHub (Mar 8, 2022):
@thebarndog Yes, I do understand that, but it's not as simple as just switching to
NSPersistentCloudKitContainer:NSPersistentCloudKitContainer. We still have to handle the synchronization of remote notifications via Persistent History Tracking.NSPersistentHistoryTracking) before focusing on CloudKit.NSPersistentCloudKitContaineritself is migrations, which is why we need most of our own metadata in the first place. CloudKit, and in effectNSPersistentCloudKitContaineras well, only supports lightweight migrations. CoreStore had always supported heavy custom migrations. There needs to be a separation of the two because people will misuse the existing APIs and expect them to work correctly.Now the thing is, CoreStore's feature development had been based on the features I needed in my own projects. If CoreStore had more sponsors requesting for new features, I would have prioritized them against my other earning projects. That said, I also want this be published as soon as I can, and I actually have to plan my other projects to support CloudKit sync just to have a playground for CoreStore.
@thebarndog commented on GitHub (Mar 8, 2022):
I don't think that's true though. I have an app thats not using persistent history tracking, just
NSPersistentCloudKitContainerand things sync just fine between multiple devices. History tracking is meant for merging and tracking changes between multiple stores and app targets IIRC.@JohnEstropia commented on GitHub (Mar 8, 2022):
I'd have to look into that again then, because there are issues like this before: https://developer.apple.com/forums/thread/120328
This may have been improved in recent iOS versions so I'll investigate again. In any case, CloudKit stores still have restrictions that will break CoreStore's existing API (ex: limited migrations, limited attribute types) and need to be separated.
@AzSiAz commented on GitHub (Jun 17, 2022):
Interested in CloudKit too
Maybe something like a SyncKit adapter would be enough ?