swift 创建,打开和关闭ViewContoller

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swift 创建,打开和关闭ViewContoller相关的知识,希望对你有一定的参考价值。

//CLOSE VIEWCONTOLLER
self.dismissViewControllerAnimated(true, completion: nil)

//PRESENT VIEW CONTROLLER
let vc = storyboard!.instantiateViewControllerWithIdentifier("UserSetupController") as! UserSetupController
self.presentViewController(vc, animated: false, completion: nil)

以上是关于swift 创建,打开和关闭ViewContoller的主要内容,如果未能解决你的问题,请参考以下文章

应用程序关闭之前/应用程序打开之前的 Swift iOS 9+ [重复]

Swift iOS -AshleyMills Reachability 每隔几秒就会打开和关闭 wifi

swift 4 中使用 performSegue 打开的关闭页面时,如何在视图控制器和 TableViewController 之间传递数据?

打开pdf,ppt ..等文件时,如何使用swift语言在Xcode中添加关闭或后退按钮?

在 Swift 中打开/关闭 iPhone LED(闪光灯)? [复制]

在 Swift 中打开一个关闭的 NSWindow 会导致应用程序崩溃