如何在没有情节提要文件的情况下将另一个viewController推到屏幕上?我已经尝试了以下代码,但没有任何反应

时间:2018-08-08 16:10:40

标签: swift

我尝试这样做。

let vc = AdminInfo() as UIViewController
self.navigationController?.pushViewController(vc, animated: true)

1 个答案:

答案 0 :(得分:0)

在Nib中,您可以按照以下步骤进行操作, 在我的情况下,“ MusicCategoryVC”是我的ViewController。

   let nextvc = MusicCategoryVC(nibName: "MusicCategory", bundle: nil)
   navigationController?.pushViewController(nextvc, animated: true)