Reputation: 159
I want to show a tooltip whenever user clicks an image in my app. I just want to know whether it is possible to show tooltip in an iOS app.
Upvotes: 8
Views: 23119
Reputation: 442
I had a similar problem and ended up writing my own custom tooltip. It might be a solution for you.
You can init with your custom view (i assume you write some delegations to detect actions within.) and present from anywhere.
Maybe not the best replacement of UIPopoverController but still works great. And a lifesaver for iPhone. Also highly customisable.
https://github.com/akeara/AKETooltip
Hope this helps.
Upvotes: 0
Reputation: 14659
You are looking for UIMenuController
Since iOS 3.2 you can add your own menu items to the editing menu via the menuItems property.
Upvotes: 2
Reputation: 9752
There are a few ways you can do this, however I have had luck with the CMPopTipView project. As far as tool tips go its a good fit for tutorials and similar events.
Is this what you were looking for?
Upvotes: 17