//去除Grouped状态:section最上面和下面的分割线
self.shiftTableView.separatorStyle = UITableViewCellSelectionStyleNone;
//去除滚动条 self.shiftTableView.showsVerticalScrollIndicator = NO;
两个section之间有一段灰色距离
-(CGFloat)tableView:(UITableView*)tableView heightForFooterInSection:(NSInteger)section
{
return0.01;
}
网友评论