How to add an option to the popup actionsheet of iphone safari?
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开发者_Go百科 Cancel.
How to add a custom option to the actionsheet ?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 UIWebDocumentView
and UIWebURLAction
, but you can't do these in AppStore apps anyway since they are undocumented classes.
精彩评论