1、避免滚动视图顶部出现20的空白以及push或者pop的时候页面有一个上移或者下移的异常动画的问题
if (@available(iOS 11.0, *)){
[[UIScrollView appearance] setContentInsetAdjustmentBehavior:UIScrollViewContentInsetAdjustmentNever];
}
2、iphonx A界面push到B界面 点击返回的时候,视图高度添加。将该视图的autolayout的高度写死,去掉下边autolayout.
网友评论