Instantiate and Present a viewController in Swift

前端 未结 16 1538
难免孤独
难免孤独 2020-11-22 13:04

Issue

I started taking a look of the new Swift on Xcode 6, and I tried some demo projects and tutorials. Now I am stuck at:

16条回答
  •  粉色の甜心
    2020-11-22 13:23

    Swift 4:

        let storyboard = UIStoryboard(name: "Main", bundle: nil)
        let yourVC: YourVC = storyboard.instantiateViewController(withIdentifier: "YourVC") as! YourVC
    

提交回复
热议问题