ShouldStartLoad of custom UIWebViewDelegate not being called when UIWebView request starts loading
I solved this by making use of the ShouldStartLoad property of the webview as follows:
myView.ShouldStartLoad = (webView, request, navType) => {
// Determine here what to do
}
I got this answer from miguel.de.icaza's answer to the question posted here.