@property (nonatomic, strong) UITableView * mainTableView;
//将tableHeaderView设置非常小
UIView *headerView = [[UIView alloc] initWithFrame:CGRectMake(0.0, 0.0, _mainTableView.bounds.size.width, CGFLOAT_MIN)];
_mainTableView.tableHeaderView = headerView;
self.automaticallyAdjustsScrollViewInsets = NO; //禁止自动调整 ScrollView Insets
网友评论