Instantiate and Present a viewController in Swift

前端 未结 16 1717
难免孤独
难免孤独 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:11

    Swift 5

    let vc = self.storyboard!.instantiateViewController(withIdentifier: "CVIdentifier")
    self.present(vc, animated: true, completion: nil)
    

提交回复
热议问题