iphone Programming Glossary: unmodeled
Need some help understanding transient properties in Core Data http://stackoverflow.com/questions/7504391/need-some-help-understanding-transient-properties-in-core-data attribute values. They will log as instances of either an NSManagedObject or of a private _NSFault... class. Because unmodeled properties are only attributes of the custom NSManagedObject subclass and not the entity the fault objects know nothing.. all the keys they respond to must be in the data model. This means faults will not reliably respond to request for unmodeled properties. Wait what I'm starting to realize my objects can be faults at any time but are you telling me they might not.. question The advantage of transient properties comes from the difference between modeled observed properties and unmodeled unobserved properties. The managed object context uses key value observing KVO to monitor modeled properties. Based on the..
|