//push方式
self.navigationController.pushViewController(vc, animated:true)
//present方式
self.presentViewController(vc, animated: true, completion: nil)
//显示列表
let sb = UIStoryboard(name:"Main", bundle: nil)
let listController = sb.instantiateViewControllerWithIdentifier("demoList") as! DemoListViewController
self.presentViewController(listController, animated: true, completion: nil)
网友评论