iOS定位从状态栏以上开始
做的像抖音刷视频的应用 ,需要包含状态栏
if(@available(iOS11.0, *)) {
if(@available(iOS13.0, *)) { self.tableView.automaticallyAdjustsScrollIndicatorInsets =NO; }else{
self.tableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
} }else{
self.automaticallyAdjustsScrollViewInsets = NO;
}
让定位从状态栏开始,而不是从状态栏以下定位