Isn\'t UIButton supposed to become grayish/grayer when enabled=NO ?
I have a simple UIButton on a blackbackground (no custom images, no custom nothing, just dragged
There is no way to make a UIButton "grayer". But you can use that trick :
UIButton *myButton; myButton.alpha = 0.4; myButton.enabled = NO;
So your UIButton looks like unusable ;)