ios页面弹出方式《笔记》

时间:2021-10-17 16:26:24

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

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

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

有问题的页面弹出:

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