D david77 macrumors regular Original poster Jun 2, 2011 #1 When a button is set to disabled, does the transparency have to be set manually?
nickculbertson macrumors regular Jun 2, 2011 #2 Yes but all you have to do is. Code: buttonname.hidden=YES; //equal to NO to show the button again or buttonname.alpha=0.0; //1.0 to show again This works for UIButtons but buttons on tool/nav bar operate differently. Nick
Yes but all you have to do is. Code: buttonname.hidden=YES; //equal to NO to show the button again or buttonname.alpha=0.0; //1.0 to show again This works for UIButtons but buttons on tool/nav bar operate differently. Nick