Hi Aaron > Inside of the setter methods it forwards the value to the cell. Here's > a quick snippet: > > @implementation GDScale9Button > - (void) setCornerSize:(NSSize) _size { > [[self cell] setCornerSize:_size]; > } > > - (void) setUpImage:(NSImage *) _image { > [[self cell] setUpImage:_image]; > } > > - (void) setDownImage:(NSImage *) _image { > [[self cell] setDownImage:_image]; > } > @end > > Will that still trigger the normal binding behavior?
Only if you implement the KVO pattern in the setters: - (void) setCornerSize:(NSSize) _size { [self willChangeValueForKey:@"CornerSize"]; [[self cell] setCornerSize:_size]; [self didChangeValueForKey:@"CornerSize"]; } - (void) setUpImage:(NSImage *) _image { [self willChangeValueForKey:@"UpImage"]; [[self cell] setUpImage:_image]; [self didChangeValueForKey:@"UpImage"]; } - (void) setDownImage:(NSImage *) _image { [self willChangeValueForKey:@"DownImage"]; [[self cell] setDownImage:_image]; [self didChangeValueForKey:@"DownImage"]; } Joanna -- Joanna Carter Carter Consulting _______________________________________________ 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: http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to arch...@mail-archive.com