Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iphone sdk: How to get rid of the action sheet in UIWebView?

I have a UIWebView and when I press a textual link (for at least a second) some kind of UIActionSheet appears with 3 buttons (open, copy and cancel) - Is there a way to prevent it from appearing?

Thanks

like image 797
Alex1987 Avatar asked Dec 03 '25 03:12

Alex1987


1 Answers

You can achieve this using CSS:

* {
   -webkit-touch-callout:none;
}
like image 146
Rengers Avatar answered Dec 04 '25 16:12

Rengers