繁体   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)

我很乐意为您服务

请尝试以下代码:

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)
})

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

暂无
暂无

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

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