Re: core data - beyond the simple example
Re: core data - beyond the simple example
- Subject: Re: core data - beyond the simple example
- From: Torsten Curdt <email@hidden>
- Date: Fri, 4 Apr 2008 22:27:40 +0200
Any thoughts on that?
Yes. Remember the prerequisites I mentioned?
4 - Bindings (and probably the required KVC/KVO concepts).
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
This means "Key Value Coding" / "Key Value Observing". Lack of
proper KVO encapsulation is most likely the cause.
I already have implemented KVC according to
http://developer.apple.com/documentation/Cocoa/Conceptual/KeyValueCoding/Concepts/Compliant.html#/
/apple_ref/doc/uid/20002172
@interface AppDelegate : NSObject
{
...
NSPredicate *filter;
}
- (void)setFilter:(NSPredicate*)filter;
- (NSPredicate*)filter;
...
IIUC this should also bring Automatic Key-Value Observing. So...
cheers
--
Torsten
_______________________________________________
Cocoa-dev mailing list (email@hidden)
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:
This email sent to email@hidden