WKWebKit and iOS 13 in Xcode 12


Alex Zavatone
 

Has anyone found a workaround for the crash of WKWebKit under the above configuration?  Xcode reposts “Error acquiring assertion” trying to display any webpage.

A workaround to prevent the screen from blanking out is this, but it doesn’t stop WKWebKit from crashing.

    override func willMove(toParent: UIViewController? ) {
        print("Something")
    }

Basically, loading any webpage crashes out in WebKit, iOS 13 and Xcode 12.  It’s fine in iOS 14.

Thanks in advance.
Alex Zavatone