I\'ve implemented a straight forward WKWebView in iOS.
WKWebView
var refreshControl = UIRefreshControl() refreshControl.addTarget(self, action: Sel
You have to enable bouncing for the scrollview of the webview:
webView.scrollView.bounces = true
This will let you drag the webview down which will trigger your UIRefreshControl.