标签:
1、presentViewController 方式,动画效果是从底部弹出,主要用在除导航类页面的弹出
let anotherVC = UIStoryboard(name: "Main", bundle: nil).instantiateViewControllerWithIdentifier("aaa") as! AnotherViewController
presentViewController(anotherVC, animated: true, completion: nil)
有问题的页面弹出:
let anotherVC = AnotherViewController(),这种弹出子页面,背景会是黑的,而且控件都未被实例化
标签:
原文地址:http://www.cnblogs.com/zwp315/p/5773869.html