In my app for iPad. First I have a welcome screen. Screen has a custom button with an image. When I press that button, it shows some gray effect before moving to the next screen. I don’t want that effect to appear. How can I remove that gray effect?
Regards
PC
That is the highlighted state of the UIButton. Per the UIButton Class Reference you can call
[button adjustsImageWhenHighlighted:NO];to remove it.