I have looked around but can't find a definitive answer. I need to fade in and out a couple of UIBarButtonItems
, simple as that. How can I?
If I can't fade a UIBarButtonItem
in anyway whatsoever, then what could I do as an alternative?
I have looked around but can't find a definitive answer. I need to fade in and out a couple of UIBarButtonItems
, simple as that. How can I?
If I can't fade a UIBarButtonItem
in anyway whatsoever, then what could I do as an alternative?
You can't fade UIBarButtonItems
themselves because they are not views.
But you can init a plain UIBarButtonItem
with a custom view (UIButton
is the best) and fade that one. For that you need to store your buttons somewhere.