Removed the hide the webview workaround to expose the flash to white problem.

This commit is contained in:
Jim Correia 2019-08-31 11:27:59 -07:00
parent 67b9721a10
commit e5782ca464
1 changed files with 0 additions and 11 deletions

View File

@ -28,7 +28,6 @@ class DetailViewController: UIViewController {
override func viewDidLoad() { override func viewDidLoad() {
super.viewDidLoad() super.viewDidLoad()
webView.isHidden = true
webView.navigationDelegate = self webView.navigationDelegate = self
markAsRead() markAsRead()
@ -213,16 +212,6 @@ extension DetailViewController: WKNavigationDelegate {
} }
} }
func webView(_ webView: WKWebView, didFinish navigation: WKNavigation!) {
// We initially hide the webview and only show it after it has loaded to avoid the
// white flashing that WKWebView does when it loads. This is especially noticable
// in dark mode.
DispatchQueue.main.asyncAfter(deadline: .now() + 0.05) {
webView.isHidden = false
}
}
} }
private extension DetailViewController { private extension DetailViewController {