// tableView 不隨導(dǎo)航欄偏移
if (@available(iOS 11.0, *)) {
self.tbView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
} else{
self.automaticallyAdjustsScrollViewInsets = NO;
}
-
使用UITableViewStyleGrouped 類型的UITableView
在使用此類UITableView 時,也會發(fā)生自動偏移的情況,存在的情況:UITableViewCell 向下偏移 35;因為在實現(xiàn)的時候,會自動設(shè)置UITableView Herder 的高度,所以需要自己設(shè)置其Header 高度為 CGFLOAT_MIN;解決辦法:
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{
return CGFLOAT_MIN;
}
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{
return nil;
}