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