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
The dataDetectorTypes property might be what you are looking for. If you want to disable that action sheet possibility, just insert the code:
webView.dataDetectorTypes = UIDataDetectorTypeNone;