vote up 2 vote down star

I UIButton using + buttonWithType:

What I need to figure out is how to manually change the button state. There are times when I need it to be set to "disabled."

I read through the UIButton documentation but I cannot seem to find anything about manually setting a button state.

Any thoughts would be greatly appreciated.

flag
To supplement what Ben said, check out the enabled property in UIControl: developer.apple.com/iphone/library/… – Athena Jan 1 at 19:36

2 Answers

vote up 8 vote down check

Did you try button.enabled = NO;?

link|flag
Hey thanks Ben. I didn't even think about looking at the superclass. Big lesson learned on that! – acreek Jan 1 at 23:07
vote up 0 vote down

Isn't it just the "state" property? It's in the UIControl class which is the superclass of UIButton.

Edit: oops, no it isn't. The docs say "This attribute is read only—there is no corresponding setter method."

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.