I'm trying to load a web view with data during a scroll animation occurs. Animation call is like that:
[scrollView scrollRectToVisible:aFrame animated:YES];
The problem is, if a web view load process overlaps with the scrollview animation, animation is stuttered, not a smooth animation occurs. It seems like load process is blocking main thread, so animation doesn't work as expected.
What can i do in order to solve this problem? In some posts people suggest to put webview as subview in the last part of
- (void)webViewDidFinishLoad:(UIWebView *)theWebView
method. But loaded data is not visible if i do like that.
Thanks for help.
EDIT 1:
@Vlad
This solution is not working i guess. I'm calling webview load like this:
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_BACKGROUND, 0), ^(void) {
[_webView loadHTMLString:htmlString baseURL:[NSURL fileURLWithPath:path]];
});
But I see that although loadHTMLString: baseURL: method is called in a non main thread,
- (void)webViewDidStartLoad:(UIWebView *)theWebView
and
- (void)webViewDidStartLoad:(UIWebView *)theWebView
methods are called in main thread. So this method didn't provide me an improvement.
Also as a detail, time passed between webViewDidStartLoad and webViewDidFinishLoad methods are nearly 0.3 secs.
What else to do?
