I have a custom UIToolbar
in my UINavigationController
, with a custom background image.
The image is half transparent on the right. The problem that I'm having is that some views have buttons on the bottom right and the bottom part of those buttons cannot be tapped because the toolbar blocks it.
I cannot set userInteractionEnabled = NO
on the UIToolBar
, because the bar contains UIBarButtonItem
s which need to remain interactive.
Is there a way to make the bar ignore tap inputs (but not the UIBarButtonItem
s)?