My app is much faster when I reuse the same WKWebView for new navigations (but I would love to be able to create new WKWebViews for each navigation so I can maintain a ViewController stack).
I've noticed however, that the pages load slower when I create a new WKWebView for each page. Somehow, Safari's (open link in new tab) seems to be doing the same thing (if I inspect through Xcode, I see a new WebContent process for each tab) but it still is about the same speed as loading the page in place in the same webview.
Besides using the same process pool, is there anything I can do to speed up load times for pages that load in a new WKWebView?