iPhone,如何使 UITableView 单元格在有数据和没有数据的情况下变黑?
我设法在加载数据时使 UITableView 行/单元格变黑,以一种时尚的方式,我在行之间得到一条白线,这使它看起来很糟糕。我怎样才能让它们在有数据和没有数据的情况下全黑?
这是我现在使用的代码
- (void)tableView:(UITableView *)tableView willDisplayCell:
(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
cell.backgroundColor = [UIColor blackColor];
}
这是我得到的(剩余白线):(
I'm managed to make my UITableView rows / cells black when data is loaded, to a fashion, I get a white line in between rows, which makes it look awful. How can i make them fully black with and without data ?
Heres the code I'm using at the moment
- (void)tableView:(UITableView *)tableView willDisplayCell:
(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
cell.backgroundColor = [UIColor blackColor];
}
Heres what I get (with white lines remaining) :(
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
更改表视图的分隔符样式。
您也可以在 Interface Builder 的属性选项板上执行此操作。
-- 为了清楚起见,请编辑以下注释 --
将整个 tableView 设置为黑色背景:
这也可以在 Interface Builder 属性面板中完成。
Change the separator style of your table view.
You can do it in Interface Builder too on the properties palette.
-- Edit for clarity following comments below --
Set the entire tableView to have a black background:
This can also be done in the Interface Builder properties panel.