I want to catch a specific error from a UIWebView, specifically WebKitErrorFrameLoadInterruptedByPolicyChange (102) in webView: didFailLoadWithError:
The problem is that since the WebKit framework itself is not available in iOS, I cannot find these constants anywhere.
Is the only solution for hard code @ "WebKitErrorDomain" and 102?
I hope no:)
source
share