I am using UIWebview in my app, when tap and hold on a link for a second an actionsheet pops up with some options OPEN, COPY and Cancel.
How to add a custom option to the actionsheet ?
I am using UIWebview in my app, when tap and hold on a link
Share
No you can’t.
The buttons in the popup action sheet are hardcoded for each data type. You can’t change that from a web site. You can change the buttons by overriding various private methods in
UIWebDocumentViewandUIWebURLAction, but you can’t do these in AppStore apps anyway since they are undocumented classes.