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

后端 未结 4 1311
盖世英雄少女心
盖世英雄少女心 2020-12-16 23:40

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.

相关标签:
4条回答
  • 2020-12-16 23:44

    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.

    0 讨论(0)
  • 2020-12-16 23:48

    check this control WEPopover, it is very useful

    enter image description here

    0 讨论(0)
  • 2020-12-16 23:49

    You are looking for UIMenuController

    Since iOS 3.2 you can add your own menu items to the editing menu via the menuItems property.

    0 讨论(0)
  • 2020-12-17 00:00

    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?

    0 讨论(0)
提交回复
热议问题