Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to hide the selection of the button in iphone

when i press the button i get the blue color , is there any way to just avoid getting that blue color when i press the button.

like image 925
uttam Avatar asked Aug 09 '10 12:08

uttam


People also ask

What is the little circle on my iPhone screen?

If the circle you notice appears in your iPhone status bar, it is an indication that your phone is out of reach of a 3G, 4G or EDGE network, but is still able to connect to the Internet through your carrier's GPRS or IxRTT network.


1 Answers

sets the button look to be consistent regardless of the state

[UIButton1 setBackgroundImage:[UIImage imageNamed:@"ButtonBack.png"] forState:UIControlStateSelected|UIControlStateNormal|UIControlStateHighlighted];
[UIButton1 setTitleColor:[UIColor whiteColor] forState:UIControlStateSelected|UIControlStateNormal|UIControlStateHighlighted];
like image 170
Aaron Saunders Avatar answered Sep 21 '22 20:09

Aaron Saunders