Exibindo o indicador de atividade no WKWebView usando swift

Estou trabalhando no código a seguir e tentando mostrar um indicador de atividade na exibição enquanto a página está carregando.

Eu tentei implementar oWKNavigationDelegate métodos, mas estou falhando como nada mostra.

Alguma sugestão sobre como consertar isto?

Não estou definindo a visualização SupportWebViewdelegar em qualquer lugar, mas eu não saberia como fazê-lo rapidamente.

import UIKit
import WebKit

class SupportWebView: UIViewController, WKNavigationDelegate {
    @IBOutlet var containerView : UIView? = nil

    var webView: WKWebView?

    override func loadView() {
        super.loadView()
        self.webView = WKWebView()
        self.view = self.webView
    }

    override func viewDidLoad() {
        super.viewDidLoad()

        var dataManager = DataManager.sharedDataManager()
        var url = dataManager.myValidURL
        var req = NSURLRequest(URL:url!)
        self.webView!.loadRequest(req)
    }

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }

    func webView(webView: WKWebView, didStartProvisionalNavigation navigation: WKNavigation!) {
        UIApplication.sharedApplication().networkActivityIndicatorVisible = true
    }


    func webView(webView: WKWebView, didFinishNavigation navigation: WKNavigation!) {
        UIApplication.sharedApplication().networkActivityIndicatorVisible = false
    }
}

questionAnswers(3)

yourAnswerToTheQuestion