Instantiate and Present a viewController in Swift

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

    If you want to present it modally, you should have something like bellow:

    let vc = self.storyboard!.instantiateViewControllerWithIdentifier("YourViewControllerID")
    self.showDetailViewController(vc as! YourViewControllerClassName, sender: self)
    

提交回复
热议问题