CoreStore icon indicating copy to clipboard operation
CoreStore copied to clipboard

Unleashing the real power of Core Data with the elegance and safety of Swift

Results 102 CoreStore issues
Sort by recently updated
recently updated
newest added

Hi, i've a project mixed swift/objc. I using CoreStore in my Swift classes but I cannot understand how to mix the objc classes. I need to import the CoreStore in...

question

I just wanted to note that I was reading the documentation for 7.1 (thanks for that by the way, it's a great update), and I wasn't sure what was meant...

pending docs update

https://stackoverflow.com/questions/57304922/crash-when-adopting-nssecureunarchivefromdatatransformer-for-a-transformable-pro

I was using `ListMonitor` delegate to update the tables ```swift func listMonitorWillChange(_ monitor: ListMonitor) { tableView.beginUpdates() } func listMonitorDidChange(_ monitor: ListMonitor) { let limit = UserService.sharedInstance.userTotalLimit let kargos = Storage.userParcels(limit:limit)...

question
user bug

I will try to save records with type: Here is model: import UIKit import CoreData class WindEntity: NSManagedObject { @NSManaged var wind_id:String @NSManaged var latitude:Double @NSManaged var longitude:Double func setInitialValues()...

question

Hello, I need help 🆘 I have CoreStore without *.xcdatamodel files. It's working fine, but when I added new property to my model app returns crash from CS. ``` ❗...

I'm changing local data and they aren't updating. I have to kill app and after opening again they are updated. ``` dataStack.perform( asynchronous: { (transaction) -> Void in let newOffline...

question

Hi John, I'm working on a new project and want to thank you for CoreStore. I was dreading using Core Data after my past experiences but CoreStore really improves the...

Can you please comment on this [question](https://stackoverflow.com/questions/57429039/corestore-how-to-observe-changes-in-database) I have prepared workaround by getting values from list monitor but not sure if it's correct. I would like to call fetchAll after...

question

1. Improve property and relationship mapping. 2. Throw errors when property or relationship cannot be mapped, don't explicitly unwrap. 3. Add extensive schema mapping and migration tests.