Reputation: 5093
On iOS, when we tap-hold some text, it displays a menu with an arrow in it pointing towards the text.
I tried all sorts of Google searches, but I could not find it.
See the dark grey element in the image below.
Upvotes: 1
Views: 661
Reputation: 4277
It is called a Popover control on iPad, on iPhone I think it does not come by default, but you can implement it using some 3-rd libraries, like:
https://github.com/nicolaschengdev/WYPopoverController
Check out this video:
https://www.youtube.com/watch?v=1iykxemuxbk
and see the description that Apple may reject the app if you are using the standard one because it is made to use for the iPad by the iOS SDK.
But if you create your custom one for iPhone, I think it should be fine.
Upvotes: 1