Because UILabel
is not intended to be added to UIToolBar
, I've gone down the path of creating a plain UIBarButtonItem
and doing setEnabled:NO
to prevent the "glow" effect from appearing when tapping it.
However, this grays out the title text, which is highly undesirable, so I thought it'd be nice to use a property like adjustsImageWhenDisabled:
, but upon checking the UIBarButtonItem docs... no dice.
Any other ideas on how to disable the UIBarButtonItem
without graying it out/altering its alpha?