I have a subclass of NSManagedObject with some image data in the NSData ( imageData ) imageData , which is automatically saved. After downloading the data from the network, I also set my own NSImage ( image ) property with the image created from the data.
The problem is that if the object is an error, awakeFromFetch is not called when I access the image property, since it is not processed by Core Data. I can, of course, override the image accessory and make sure that the properties are loaded (by accessing imageData ), but it would be nice if awakeFromFetch were called as usual. Any suggestions?
source share