I am using a UIWebview to display local .html. I want to disable longpress in this view. How would I go about executing this? Right now this: http://yfrog.com/498jxej shows up and I want to avoid that.
Here is what fixed it:
<style media="screen" type="text/css">
body {
-webkit-touch-callout: none;
}
</style>