> On Dec 18, 2016, at 5:50 AM, Frank D. Engel, Jr. <fde...@fjrhome.net> wrote: > > My guess is that for some reason the @synthesize methods are not calling > "willChangeValueForKey" and the like - why would that be the case? I have > worked on one or two other Core Data projects and I don't remember having to > do this before...
With Core Data, you don’t use @synthesize, you use @dynamic. @synthesize will not create Core Data-friendly accessors. @dynamic allows the Core Data runtime to create the appropriate accessors for you. Also, in the future, please don’t just say “they aren’t being saved”, even with “not using X or Y”. Say exactly how you are persisting as there are at least four common persistence methods (Archiving, User Defaults, Document-based, Core Data). HTH, Keary Suska Esoteritech, Inc. "Demystifying technology for your home or business" _______________________________________________ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to arch...@mail-archive.com