菜鸟教程小白 发表于 2022-12-12 23:12:27

ios - 在 NSNotificationCenter 回调中导航有很长的延迟 iOS Swift


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

<pre><code>override func viewWillAppear(animated: Bool) {
    super.viewWillAppear(animated)

    let storyboard = self.storyboard
    let vc: UIViewController = storyboard.instantiateViewControllerWithIdentifier(&#34;homeViewController&#34;) as UIViewController

    NSNotificationCenter.defaultCenter().addObserverForName(&#34;ItemsLoaded&#34;, object: nil, queue: nil, usingBlock: { note in

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

    })
}
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我找到了答案。看起来我需要在主线程上发送通知的发布。它有效,只是不确定这是否是最好的方法。</p>

<pre><code>dispatch_async(dispatch_get_main_queue(), {
    NSNotificationCenter.defaultCenter().postNotificationName(&#34;ItemsLoaded&#34;, object: nil)
})
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 在 NSNotificationCenter 回调中导航有很长的延迟 iOS Swift,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/24386492/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/24386492/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 在 NSNotificationCenter 回调中导航有很长的延迟 iOS Swift