I want to put pop up button like Email in UIWebView.In my app i have created ebook
in webView now whenever i click(long press) on index page link it will create the pop up
window with open and copy button as shwon as below:
Like this i want to put another button like Email and Print.How to create another button in pop up window in WebView?Thanks in advance!
The popup you refer to is called a
UIMenuController. You can access the[UIMenuController sharedMenuController]method to get the menu controller. You can then add your ownUIMenuItemsto the menu controller.Now implement the methods
For more detail refer apple’s Doc.
Edit
you can implement Long Gesture