我有一个索引表视图,就像iphone中的联系人列表一样。
我希望如果某个部分没有行,则不应显示该部分的部分标题。
答案 0 :(得分:0)
为什么不让tableView:heightForHeaderInSection:
在这种情况下返回零?
答案 1 :(得分:0)
如果您为每个部分使用数组,那么您可以通过该数组计数结帐为0或不是
如果为0则返回标题
的0高度 -(CGFloat) tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{
if ([urSectionArray count]>0) {
return 90;
}
return 0;
}
更多细节