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

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

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

1 回答 1

0

我很乐意帮助你

请尝试以下代码:

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

于 2019-09-18T12:17:28.080 回答