Answer in Swift 3 and Swift 4
If anyone still has problems. This worked for me:
Find "didFinish" and add / replace the following code.
func webView(_ webView: WKWebView, didFinish navigation: WKNavigation!) { self.didFinish() webView.allowsBackForwardNavigationGestures = true }
The main code you need is just one line. It appears after self.didFinish() , but is still in brackets {} .
webView.allowsBackForwardNavigationGestures = true
source share