I would like to know how you can disable UIActionSheets, specifically the Action Sheets being displayed after tapping and holding hyperlinks in a UIWebView. These seem to be ena
I just found this solution myself. Add this to your CSS:
body { -webkit-touch-callout: none; }
To be clear, this disables the action sheet that appears when you hold down a hyperlink.