Skip to content

Version 1.0.1

Compare
Choose a tag to compare
@pepicrft pepicrft released this 06 Oct 14:38
  • 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