I have a control that goes inactive under some conditions in my iPhone app. I can [setUserInteractionEnabled: NO] on it and it doesn't respond to touches. Its appearance does not change however. Other environments I am familiar with "grey out" inactive controls. I wonder what is the idiomatic way to hint to the user that the control is inactive.
+2
A:
UIControl
(the parent class of all the common controls) has an enabled
property that you can set to NO
.
What it does is dependent on which subclass you're dealing with, and whether you've, say, used custom images for the various states.
Frank Schmitt
2010-04-08 00:25:18
Duh! Thank you!
iter
2010-04-08 00:33:49