OStack程序员社区-中国程序员成长平台

标题: ios - 在 NSNotificationCenter 回调中导航有很长的延迟 iOS Swift [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-12 23:12
标题: ios - 在 NSNotificationCenter 回调中导航有很长的延迟 iOS Swift

我正在尝试在 NSNotificationCenter 观察者的回调中导航。我可以在调试时看到回调被击中,但导航直到很久以后(约 30 秒)才在 UI 中发生。我要解决这个问题了吗?我想这个用例很常见 - 当一些背景事件发生时导航。

override func viewWillAppear(animated: Bool) {
    super.viewWillAppear(animated)

    let storyboard = self.storyboard
    let vc: UIViewController = storyboard.instantiateViewControllerWithIdentifier("homeViewController") as UIViewController

    NSNotificationCenter.defaultCenter().addObserverForName("ItemsLoaded", object: nil, queue: nil, usingBlock: { note in

        self.navigationController.pushViewController(vc, animated: true)

    })
}



Best Answer-推荐答案


我找到了答案。看起来我需要在主线程上发送通知的发布。它有效,只是不确定这是否是最好的方法。

dispatch_async(dispatch_get_main_queue(), {
    NSNotificationCenter.defaultCenter().postNotificationName("ItemsLoaded", object: nil)
})

关于ios - 在 NSNotificationCenter 回调中导航有很长的延迟 iOS Swift,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24386492/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4