Re: checkbox question
Re: checkbox question
- Subject: Re: checkbox question
- From: Michael de Haan <email@hidden>
- Date: Sat, 22 Aug 2009 19:34:42 -0700
On Aug 22, 2009, at 7:08 PM, Quincey Morris wrote:
If you did that, you could add a "measurementUnits" property to your
window controller:
+ (NSSet*) keyPathsForValuesAffectingMeasurementUnits
{
return [NSSet setWithObject: @"state"];
}
- (NSString*) measurementUnits
{
return state ? @"kg" : "lb";
}
and then bind each of the text labels to that property. Then when
you click the checkbox, all the text labels will change automatically.
Very very slick....I like that. :-)
Thank you so much...in the mean time...have gotten the functionality
( well almost). Thank you again for your time. Much appreciated.
_______________________________________________
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