• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: Handling bindings of an NSControl which forward everything to an NSCell?
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Handling bindings of an NSControl which forward everything to an NSCell?


  • Subject: Re: Handling bindings of an NSControl which forward everything to an NSCell?
  • From: Joanna Carter <email@hidden>
  • Date: Tue, 11 May 2010 20:45:00 +0100

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 (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

  • Follow-Ups:
    • Re: Handling bindings of an NSControl which forward everything to an NSCell?
      • From: Quincey Morris <email@hidden>
    • Re: Handling bindings of an NSControl which forward everything to an NSCell?
      • From: Joanna Carter <email@hidden>
    • Re: Handling bindings of an NSControl which forward everything to an NSCell?
      • From: aaron smith <email@hidden>
References: 
 >Handling bindings of an NSControl which forward everything to an NSCell? (From: aaron smith <email@hidden>)
 >Re: Handling bindings of an NSControl which forward everything to an NSCell? (From: Seth Willits <email@hidden>)
 >Re: Handling bindings of an NSControl which forward everything to an NSCell? (From: aaron smith <email@hidden>)

  • Prev by Date: Re: Handling bindings of an NSControl which forward everything to an NSCell?
  • Next by Date: Re: Mouse Drag Ignore.
  • Previous by thread: Re: Handling bindings of an NSControl which forward everything to an NSCell?
  • Next by thread: Re: Handling bindings of an NSControl which forward everything to an NSCell?
  • Index(es):
    • Date
    • Thread