如何在空的UITableViewCell中设置颜色?

时间:2011-06-29 14:58:06

标签: ios uitableview

我想复制下面详细部分(带地图和方向的表格)图片的Gowalla UI enter image description here

我使用带有contentInset的表复制它,将backgroundColor设置为clearColor,并将- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath中的UITableViewCell颜色更改为白色,但结果 不是我所期望的空单元格是白色的只有具有内容的单元格(数字返回- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section)这里是我得到的结果

enter image description here

有没有办法设置空单元格颜色或任何指导如何实现这个?

2 个答案:

答案 0 :(得分:0)

设置与您为单元格设置相同的视图背景颜色。并使细胞透明。

答案 1 :(得分:0)

由于长时间没有回复,我会在这里发布我的解决方案。我通过在UIView下使用UITableView并将父视图背景颜色设置为与UITableViewCell颜色相同来解决了这个问题。