我有一个包含 1 个单元格的表格视图,但是为填充整个屏幕的行显示了单元格边框。如果只有 1 个单元格,为什么 UITableView 会为所有这些单元格绘制单元格边框?我希望我的表格表现得像股票闹钟应用程序中的表格视图 - 它只绘制与表格一样多的单元格。知道如何做到这一点吗?
问问题
474 次
2 回答
2
尝试设置表格页脚视图
tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];
于 2012-08-17T14:27:09.263 回答
2
试试这个代码;
- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section {
UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 100)];
view.backgroundColor = [UIColor whiteColor];
return view;
}
于 2012-08-17T14:33:27.300 回答