Reputation: 23
I have set suppressesIncrementalRendering = NO; but WKWebView rendering slower than UIWebView. At UIWebView, it appear the title first, than load images fully to appear images,at last , the title and images appear together. In WKWebView, the content of web appear after the title and images load finished . HOW to get the same with WKWebViEW as UIWebView's loading?
Upvotes: 2
Views: 2789
Reputation: 330
This has been moved to the configuration of WKWebView:
myConfiguration.suppressesIncrementalRendering = YES;
Upvotes: 7