user1184202
user1184202

Reputation: 159

Is it possible to show a tooltip in an iOS app?

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

Answers (4)

erenkabakci
erenkabakci

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

Pascalius
Pascalius

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

Mahmoud Adam
Mahmoud Adam

Reputation: 5852

check this control WEPopover, it is very useful

enter image description here

Upvotes: 1

Devin M
Devin M

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.

Tooltip example

Is this what you were looking for?

Upvotes: 17

Related Questions