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.
Asked
Active
Viewed 2.3k times
4 Answers
17
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?

Devin M
- 9,636
- 2
- 33
- 46
-
Yes that's what I am looking for – user1184202 Mar 16 '12 at 03:32
2
You are looking for UIMenuController
Since iOS 3.2 you can add your own menu items to the editing menu via the menuItems property.

Pascalius
- 14,024
- 4
- 40
- 38
0
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.

erenkabakci
- 442
- 4
- 15