If you have a UIBarButtonItem with image/textor UIBarButtonSystemItem, useUIBarButtonItemStylePlain
barButton.style = UIBarButtonItemStylePlain;
If you have a UIBarButtonItem with a custom view, UIButtonadd the following code for each :
uiButton.showsTouchWhenHighlighted = YES;
source
share