我的UITableView上的这一行是什么?

时间:2011-07-07 05:40:46

标签: iphone ios uitableview uikit

我有一个分组表格视图。我之前已经制作了数十个表视图,但我不确定这行是什么: enter image description here

谁能告诉我这是什么以及如何将其删除?

更新:

我将问题缩小到heightForRowAtIndexPath委托方法。看看下面的内容。请注意,我需要一些更高的行:

-(CGFloat)tableView:(UITableView *)tableViewLocal heightForRowAtIndexPath:(NSIndexPath *)indexPath {
    if(indexPath.section == 0 && (indexPath.row == 3 || indexPath.row == 4 || indexPath.row == 5))  {
        return tableViewLocal.rowHeight * 1.3; //If I remove the multiplier, it doesn't produce the line.
    }
    else
        return tableViewLocal.rowHeight;
}

1 个答案:

答案 0 :(得分:0)

它看起来像背景。尝试将代码中的tableView设置为

self.tableView.backgroundColor = [UIColor clearColor];

希望这有帮助。