iOS:只有一个表格单元格,但屏幕上充满了单元格边框

时间:2012-08-17 14:23:27

标签: ios uitableview

我有一个带有1个单元格的表格视图,但是显示了填充整个屏幕的行的单元格边框。如果只有1个单元格,为什么UITableView会为所有这些单元格绘制单元格边框?我希望我的表行为像股票闹钟应用程序中的表格视图 - 它只绘制与表格一样多的单元格。知道怎么做到这一点吗?

2 个答案:

答案 0 :(得分:2)

尝试设置表格页脚视图

tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];

答案 1 :(得分:2)

试试这段代码;

- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section {
    UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 100)];
    view.backgroundColor = [UIColor whiteColor];
    return view;
}