We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In iOS 12,if you call loadRequest twice in succession,like this:
loadRequest
[self.webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"https://github.com"]]]; [self.webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"https://google.com"]]];
webViewDidStartLoad: will callback twice times,but webViewDidFinishLoad: just callbcak once time.like this:
webViewDidStartLoad:
webViewDidFinishLoad:
1. didStartLoading 2. didStartLoading 3. didFinishLoad
Everything is correct in iOS 11.Callback sequence:
1. didStartLoading 2. didFinishLoad 3. didStartLoading 4. didFinishLoad
This problem will lead to [CDVUserAgentUtil acquireLock:] block don`t excute.
[CDVUserAgentUtil acquireLock:]
The text was updated successfully, but these errors were encountered:
fix issue apache#447
080496d
6d9bf0c
83e5929
No branches or pull requests
In iOS 12,if you call
loadRequest
twice in succession,like this:webViewDidStartLoad:
will callback twice times,butwebViewDidFinishLoad:
just callbcak once time.like this:Everything is correct in iOS 11.Callback sequence:
This problem will lead to
[CDVUserAgentUtil acquireLock:]
block don`t excute.The text was updated successfully, but these errors were encountered: