我尝试这样做。
let vc = AdminInfo() as UIViewController
self.navigationController?.pushViewController(vc, animated: true)
答案 0 :(得分:0)
在Nib中,您可以按照以下步骤进行操作, 在我的情况下,“ MusicCategoryVC”是我的ViewController。
let nextvc = MusicCategoryVC(nibName: "MusicCategory", bundle: nil)
navigationController?.pushViewController(nextvc, animated: true)