1.當(dāng)cell的類(lèi)型是plaint類(lèi)型時(shí),直接設(shè)置:
self.automaticallyAdjustsScrollViewInsets=NO;
2.當(dāng)cell的類(lèi)型是group類(lèi)型時(shí),此時(shí)要去掉tableView頂部的空白需要兩步:
2-1.設(shè)置tableView的tableHeaderView高度為0.5:
self.MenuTable.tableHeaderView=[[UIview alloc] initWithFrame:(CGRectMake(0,20,82,0.5))];
2-2.設(shè)置heightForHeaderInSection的高度為0.5
-(CGFloat)tableView:(UItableView *)tableView heightForHeaderInSection(NSInteger)section{
return 0.5;
}