📌  相关文章
📜  快速推送视图控制器 - Swift 代码示例

📅  最后修改于: 2022-03-11 15:00:58.794000             🧑  作者: Mango

代码示例2
let storyBoard : UIStoryboard = UIStoryboard(name: "Main", bundle:nil)
let nextViewController = storyBoard.instantiateViewController(withIdentifier: "nextView") as! NextViewController
self.present(nextViewController, animated:true, completion:nil)