John Estropia

Results 146 comments of John Estropia

Thanks, I'll go around with the Xcode 14 / iOS 16 changes within the week.

@ptrkstr Please try this branch out for now while we wait for fixes on (1) from Apple's side: [minIOS13](https://github.com/JohnEstropia/CoreStore/tree/minIOS13). Note that this branch drops iOS 12 support, since I'm planning...

@ptrkstr The latest beta updates are in `develop` now, and the error you see above is already addressed through a compiler directive: https://github.com/JohnEstropia/CoreStore/blob/e9219682b52d73dba4d8d561241149c5c5ae2f30/Sources/Where.swift#L201

Just to clarify, CloudKit was never supported in Core Store. What was removed in 6.x.x was support for iCloud Storage (i.e. `NSPersistentStoreUbiquitousContentNameKey` and friends), which was deprecated by Apple since...

@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...

@thebarndog Yes, I do understand that, but it's not as simple as just switching to `NSPersistentCloudKitContainer`: - It's a common misconception, but remote synchronization is actually not built-in with `NSPersistentCloudKitContainer`....

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...

@darrenasaro Since you're not getting an error at `try! dataStack.fetchAll()`, then it's likely your SQLite file does not contain records in the first place.

@darrenasaro Can you print the original file URL from here ``` let persistentStore = try! coordinator.addPersistentStore( ofType: NSSQLiteStoreType, configurationName: nil, at: persistentStoreURL, options: [:] ) print(persistentStore.url) ``` and check if...