码迷,mamicode.com
首页 > 编程语言 > 详细

Swift中使用presentViewController跳转页面后模拟器显示黑屏问题

时间:2015-12-05 22:43:55      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:

Swift中使用presentViewController跳转页面后模拟器显示黑屏问题

问题原因

针对storyboard制作页面和手写页面,需要使用两种不同方法进行页面跳转。

解决办法

针对手写页面及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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!