Swift presentViewController

前端之家收集整理的这篇文章主要介绍了Swift presentViewController前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在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被调用。这可以做吗?

尝试这个:
let vc = ViewController() //change this to your class name
self.presentViewController(vc,completion: nil)

使用Swift3:

self.present(vc,completion: nil)
原文链接:https://www.f2er.com/swift/321056.html

猜你在找的Swift相关文章