The following is the action onclick a button to initiate webview and load the given URL. Working on Swift 3 Xcode 8 iOS 10.2
@IBAction func initWebView(_ sender: UIButton)
{
if let webViewURL = URL(string: "somelink") {
let webViewURLRequest = URLRequest(url: webViewURL)
myWebView.loadRequest(webViewURLRequest)
}
}
After running it gives the following error "fatal error: unexpectedly found nil while unwrapping an Optional value"
Can someone please help me. Thanks