I have a UIView
that appears on screen when a user taps a UIBarButtonItem
in my UINavigationController
. The button already has an image, which works fine.
What I would like to do is when the UIBarButtonItem
is tapped a small image appears right below it - still partly in the UINavigationController
- so it looks like a speak bubble has appeared. It seems this would be quite difficult.
Is this possible? Or should I look at just moving the UIView
down a few points and adding the UIImage
between the UIView
and the UINavigationController
?
I don't want to change the size / high of the UIBarButtonItem
or its current image.