webViewDidStartLoad
and webViewDidFinishLoad
are not working.
What I have already done:
webView.delegate = self;
- added
UIWebViewDelegate
- placed the code in
viewDidAppear
.
Here is the code:
func webViewDidStartLoad(webView: UIWebView!) {
print("Webview started Loading")
}
func webViewDidFinishLoad(webView: UIWebView!) {
print("Webview did finish load")
}