为什么导航控制器不使用Swift在回调中导航?

时间:2015-06-21 21:12:50

标签: swift callback navigation navigationcontroller

我创建了一个导航控制器并将其分配给Swift中的View Controller。

我创建了以下方法:

@IBAction func btnLoginPressed(sender: AnyObject) {
    let userManager = UserManager()
        userManager.login(txtBoxLogin.text, password: txtBoxPassword.text, operationCompleteHandler: {
            (token: String?) -> Void in
                if let token = token {
                    ApplicationState.ApiToken = token
                    var mainView = self.storyboard?.instantiateViewControllerWithIdentifier("MenuView") as! MenuViewController
                    self.navigationController!.pushViewController(mainView, animated: true)
                }
        })
}

问题是它在此配置中不起作用。但是,如果我把

self.storyboard?.instantiateViewControllerWithIdentifier("MenuView") as! MenuViewController
                    self.navigationController!.pushViewController(mainView, animated: true)

在operationCompleteHandler之外,它完美无缺。

我做错了什么,我应该如何解决这个问题?

1 个答案:

答案 0 :(得分:1)

最后,我发现了这种奇怪行为的原因:回调是在一个独立于UI线程的线程上运行。

为了允许代码片段执行与UI相关的事情,您必须使用dispatch_async()方法。这是我使用上述方法进行工作导航的更新代码:

@IBAction func btnLoginPressed(sender: AnyObject) {
    let userManager = UserManager()
        userManager.login(txtBoxLogin.text, password: txtBoxPassword.text, operationCompleteHandler: {
            (token: String?) -> Void in
                if let token = token {
                    ApplicationState.ApiToken = token
                    dispatch_async(dispatch_get_main_queue()) {
                        var mainView = self.storyboard?.instantiateViewControllerWithIdentifier("MenuView") as! MenuViewController
                        self.navigationController!.pushViewController(mainView, animated: true)
                    }
                }
        })
}