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?
Asked
Active
Viewed 2,644 times
1 Answers
7
This has been moved to the configuration of WKWebView:
myConfiguration.suppressesIncrementalRendering = YES;

Pang
- 9,564
- 146
- 81
- 122

VendettaTurkey
- 330
- 3
- 10
-
1This solves the problem? Because it seems like the exact opposite of what should be necessary. – Tom Harrington Oct 02 '18 at 15:57
-
Can you please help me with my question: https://stackoverflow.com/questions/62482781/what-is-suppressesincrementalrendering-doing? – David Jun 25 '20 at 11:41