简体   繁体   English

当我推视图控制器时,导航需要花费时间

[英]When I push view controller its take time to navigate

let storyboard = UIStoryboard(name: "Main", bundle: nil)

let vc = storyboard.instantiateViewController(withIdentifier: "AbcViewController") as! AbcViewController

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

I will happy to help you 我很乐意为您服务

Please try this code: 请尝试以下代码:

DispatchQueue.main.async(execute: {
    let storyboard = UIStoryboard(name: "Main", bundle: nil)   
    let vc = storyboard.instantiateViewController(withIdentifier: "AbcViewController") as! AbcViewController

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

Thank You 谢谢
Yash Shekhada 亚什·谢卡达(Yash Shekhada)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM