Xcode 9 GM - WKWebView NSCoding support was broken in previous versions
The error is correct behavior, and not a bug in Xcode 9. Although WKWebView was introduced in iOS 8, there was a bug in -[WKWebView initWithCoder:]
that was only fixed in iOS 11, which always crashed at runtime and thus prevented configuring one within Interface Builder.
https://bugs.webkit.org/show_bug.cgi?id=137160
Rather than allow developers to build something in IB that would be broken at runtime, it is a build error. It's an inconvenient limitation since iOS 11 was only recently released, but there's really no other good option.
The workaround for older deployment targets is to continue to add the WKWebView in code, as @fahad-ashraf already described in his answer:
https://developer.apple.com/documentation/webkit/wkwebview
This seems to be a bug in Xcode 9 and was also present in the betas. You will only get the build error if you are creating a WKWebView through the storyboard. If you progmatically create the WKWebView in the corresponding ViewController class file, you should be able to build on iOS versions below iOS 11. Here is the approach given on Apple's website for how to accomplish this:
import UIKit
import WebKit
class ViewController: UIViewController, WKUIDelegate {
var webView: WKWebView!
override func loadView() {
super.loadView()
let webConfiguration = WKWebViewConfiguration()
webView = WKWebView(frame: .zero, configuration: webConfiguration)
webView.uiDelegate = self
view = webView
}
override func viewDidLoad() {
super.viewDidLoad()
let myURL = URL(string: "https://www.apple.com")
let myRequest = URLRequest(url: myURL!)
webView.load(myRequest)
}}
You should then be able to implement WKWebView functionality as you normally would.
Source: https://developer.apple.com/documentation/webkit/wkwebview