RE: setting the increment of all steppers
RE: setting the increment of all steppers
- Subject: RE: setting the increment of all steppers
- From: "Jonathan E. Jackel" <email@hidden>
- Date: Tue, 21 Oct 2003 14:43:51 -0400
>
I have some code that registers if the option key is pressed and
>
released.
>
when the option key is down I want to set All the steppers to 10 when
>
it is released set them all to 1.
>
>
is there a easy way to change all of the steppers at once.
Put the steppers in an NSArray and tell the array:
[stepperArray makeObjectsPerformSelector:@selector(setObjectValue:)
withObject:[NSNumber numberWithInt:10]];
Jonathan
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.