I want to load HTML pages using WkWebView and I want to show the page just after it\'s finished loading. As long as it\'s loading I would like to show an activity indicator
I think the WKNavigationDelegate's webView:didFinishNavigation: delegate callback is what you're looking for.
WKNavigationDelegate
Configure and present your activity indicator when you start to load and then stop and remove it from view when the callback is called.