标签:
针对storyboard制作页面和手写页面,需要使用两种不同方法进行页面跳转。
针对手写页面及storyboard制作页面,使用代码进行页面跳转的两种方法。
var sb = UIStoryboard(name: "Main", bundle:nil)
var vc = sb.instantiateViewControllerWithIdentifier("myViewController") as MyViewController
self.presentViewController(vc, animated: true, completion: nil)
其中 myViewController 是在 Main.storyboard 中选中的 MyViewController 的 storyboardID 值。可以在 Identifier inspector 中修改。
var vc = MyViewController()
self.presentViewController(vc, animated: true, completion: nil)
Swift中使用presentViewController跳转页面后模拟器显示黑屏问题
标签:
原文地址:http://blog.csdn.net/kongxx/article/details/50188285