gpt4 book ai didi

swift - 为什么导航 Controller 不使用 Swift 在回调中导航?

转载 作者:行者123 更新时间:2023-11-28 07:04:47 25 4
gpt4 key购买 nike

我在 Swift 中创建了一个导航 Controller 并将其分配给我的 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 之外,它可以完美地工作。

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

最佳答案

最后,我找到了这种奇怪行为的原因:回调在独立于 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)
}
}
})
}

关于swift - 为什么导航 Controller 不使用 Swift 在回调中导航?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30969384/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com