ios页面弹出方式《笔记》

1、presentViewController 方式,动画效果是从底部弹出,主要用在除导航类页面的弹出

let anotherVC = UIStoryboard(name: "Main", bundle: nil).instantiateViewControllerWithIdentifier("aaa") as! AnotherViewController

presentViewController(anotherVC, animated: true, completion: nil)

有问题的页面弹出:

let anotherVC = AnotherViewController(),这种弹出子页面,背景会是黑的,而且控件都未被实例化

上一篇:java进阶之-Maven,svn,git,maven合拼多个项目


下一篇:谈一谈SQL Server中的执行计划缓存(下)