2014-07-23 hide static tableview section code snippet ios 主要是实现以下几个方法 123456789101112131415161718192021222324252627282930313233343536373839404142-(UIView*)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{ if(section == 1 && hideTableSection) return [[UIView alloc] initWithFrame:CGRectZero]; return nil; }- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{ if(section == 1 && hideTableSection) return 1; return 32;}-(CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section{ if(section == 1 && hideTableSection) return 1; return 16;}-(UIView*)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section{ if(section == 1 && hideTableSection) return [[UIView alloc] initWithFrame:CGRectZero]; return nil;}- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{ if(section == 1) { if(hideTableSection) return 0; else return 1; } else { return 2; }} < group style tableview background color in ios 7 haha >