I Have a UIWebView strictly for viewing PDF's, and I don't want any link detection in the view, Like this:
So I added the following code to negate the detection of links and the presentation of that view:
override func viewDidLoad() {
        super.viewDidLoad()
        myWebView.dataDetectorTypes = UIDataDetectorTypes.None
    }
However it still picks up links, and presents that modal view. How do I correctly implement code to stop this?
Here is my updated code:
class PdfViewController: UIViewController, UIWebViewDelegate {
    @IBOutlet var myWebView: UIWebView!
    var contentUrlPassedOn: String!
    var allowLoad = true
    override func viewDidLoad() {
        super.viewDidLoad()
        myWebView.delegate = self
        let url: NSURL! = NSURL(string: contentUrlPassedOn)
        myWebView.loadRequest(NSURLRequest(URL: url))
        myWebView.dataDetectorTypes = UIDataDetectorTypes.None
   }
    func webView(webView: UIWebView, shouldStartLoadWithRequest request: NSURLRequest, navigationType: UIWebViewNavigationType) -> Bool {
        return allowLoad
    }
    func webViewDidStartLoad(webView: UIWebView) {
        var hasFinishedLoading = false
        updateProgress()
    }
    func webViewDidFinishLoad(webView: UIWebView) {
        dispatch_after(dispatch_time(DISPATCH_TIME_NOW, Int64(1.0 * Double(NSEC_PER_SEC))),
            dispatch_get_main_queue()) {
                [weak self] in
                if let _self = self {
                    _self.hasFinishedLoading = true
                    self!.allowLoad = false
            }
        }
    }

 
    
 
     
     
    
