pageViewController.view.frame = topView.bounds
pageViewController.view.autoresizingMask = [.FlexibleWidth,.FlexibleHeight]
这是个固定搭配,实现目的是,设置子视图的frame和父视图的bounds相等,自动布局的时候,让子视图和父视图同步放大或缩小
pageViewController.view.frame = topView.bounds
pageViewController.view.autoresizingMask = [.FlexibleWidth,.FlexibleHeight]
这是个固定搭配,实现目的是,设置子视图的frame和父视图的bounds相等,自动布局的时候,让子视图和父视图同步放大或缩小