在使用UIScrollView的时候,frame设置成全屏的,但是你往上加子视图的时候他会自动在上方留出64的空白。
iOS11以前的处理方法是self.automaticallyAdjustsScrollViewInsets = NO; 或者为self.edgesForExtendedLayout = UIRectEdgeNone;
但是到了iOS11就不行了,必须要使用 scrollView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever ;
这样才ok
网友评论