How to disable the light that appears when touchin

2020-06-21 06:30发布

问题:

I have a toolbar with a UIBarButtonItem with style: UIBarButtonItemStylePlain. I wonder how can I disable the light that appears while touching it?

UIButton has showsTouchWhenHighlighted property but there is no such a thing for UIBarButtonItem is there a work-around you might know?

回答1:

In Interface Builder drag a UIButton to the toolbar. It will create a UIBarButtonItem with a UIButton in it. Set the type of the UIButton to custom. Then you can fully customize the appearence. For example change the text color to white and the background color to transparent and of course disable the highlighting.



回答2:

You can also drop in a UITextField and make it non-editable.