I want to do extra work after loading the webpage, so I am adding code to webViewDidFinished, but it does not seem to work in this situation.
Situation: I visit a webpage with UIWebview and then a link to another, after which I launch
[webview goback]
It seems that the page was loaded from the cache, only
- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType;
- (void)webViewDidFinishLoad:(UIWebView *)webView;
not called.
source share