Search code examples
uiwebviewloadwkwebview

WKWebView suppressesIncrementalRendering


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?


Solution

  • This has been moved to the configuration of WKWebView:

    myConfiguration.suppressesIncrementalRendering = YES;