任何想法为什么我无法减少/删除分组UITableView中的单元格之间的空间(每个部分一个单元格)。我在控制器中包含以下内容:
- (CGFloat) tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
return 0.0;
}
- (CGFloat) tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section {
return 0.0;
}
即使使用此代码,我仍然在单元格之间获得空格。在细胞周围放置边框,空间不是来自细胞本身。
答案 0 :(得分:0)
根据PengOne关于回答here的建议,我没有使其成功的原因如下:
-(UIView*)tableView:(UITableView*)tableView viewForHeaderInSection:(NSInteger)section
{
return [[[UIView alloc] initWithFrame:CGRectMake(0, 0, 0, 0)] autorelease];
}
-(UIView*)tableView:(UITableView*)tableView viewForFooterInSection:(NSInteger)section
{
return [[[UIView alloc] initWithFrame:CGRectMake(0, 0, 0, 0)] autorelease];
}