8

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.

Matt Ball
  • 354,903
  • 100
  • 647
  • 710
user1184202
  • 159
  • 1
  • 3
  • 11

4 Answers4

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.

Tooltip example

Is this what you were looking for?

Devin M
  • 9,636
  • 2
  • 33
  • 46
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
1

check this control WEPopover, it is very useful

enter image description here

Mahmoud Adam
  • 5,772
  • 5
  • 41
  • 62
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