我在iOS Swift项目中有多个视图控制器。我没有故事板,并希望尽可能避免他们。有没有办法切换到另一个viewcontroller.swift文件(我们将其称为view2.swift),并将它作为一个按钮调用的函数的一部分?我试过以下:
let storyboard: UIStoryboard = UIStoryboard(name: "myTabBarName",bundle: nil) let vc: UIViewController = storyboard.instantiateViewControllerWithIdentifier("myVCID") as UIViewController self.presentViewController(vc,animated: true,completion: nil)
上面的工作与storyboards,但我想要另一个view2.swift被调用。这可以做吗?
尝试这个:
原文链接:https://www.f2er.com/swift/321056.htmllet vc = ViewController() //change this to your class name self.presentViewController(vc,completion: nil)
使用Swift3:
self.present(vc,completion: nil)