Version 1.0.1
- Playground tutorial to learn how to use SugaRecord
- Migrations support
- Count methods
CoreDataObject.all().count()
- Swift custom operators
var person = context <- Person.self // Object creation in a given context
var person = Person.self++ // Object creation in the default context
Person.self += person // Object saving
Person.self -= person // Object deletion
- FetchedResultsController support
CoreDataObject.all().fetchedResultsController("name")
- Stack for iCloud