The project that I am working on at the moment utilises Core Data for storing data, and that meant that I would need to figure
Tag: NSManagedObject
Core Data: Transient Properties on NSManagedObject
Transient properties are properties on a NSManagedObject that are not persisted to the object store. They are calculated at runtime, usually on the basis of other property values. The classic example would be for a `Person` object, generating a `fullName` property that is not persisted to the object store as both `firstName` and `lastName` are, so it can be composed at runtime.
Revisiting the Core Data Singleton
Whilst I’m sure the idea of a Singleton for application wide variables is going to be good one, I must say that I’ve revisited this