iPhone,如何使 UITableView 单元格在有数据和没有数据的情况下变黑?

发布于 2024-09-25 20:20:16 字数 421 浏览 5 评论 0原文

我设法在加载数据时使 UITableView 行/单元格变黑,以一种时尚的方式,我在行之间得到一条白线,这使它看起来很糟糕。我怎样才能让它们在有数据和没有数据的情况下全黑?

这是我现在使用的代码

- (void)tableView:(UITableView *)tableView willDisplayCell:
        (UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
cell.backgroundColor = [UIColor blackColor];

}

这是我得到的(剩余白线):(

alt text

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) :(

alt text

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

人心善变 2024-10-02 20:20:17

更改表视图的分隔符样式。

yourTableView.separatorStyle = UITableViewCellSeparatorStyleNone;

您也可以在 Interface Builder 的属性选项板上执行此操作。

-- 为了清楚起见,请编辑以下注释 --

将整个 tableView 设置为黑色背景:

[yourTableView setBackgroundColor:[UIColor blackColor]];

这也可以在 Interface Builder 属性面板中完成。

Change the separator style of your table view.

yourTableView.separatorStyle = UITableViewCellSeparatorStyleNone;

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:

[yourTableView setBackgroundColor:[UIColor blackColor]];

This can also be done in the Interface Builder properties panel.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文