如何更改背景TableView而不使背景tableViewCell与其相同?
好的,我有将显示 tableViewCell 的 tableView。但我想让两者具有不同的背景,因为如果我更改了 tableview 背景,tableviewCell 背景就会更改为与 tableView 相同。无论如何,我可以将它们变成不同的背景颜色吗?提前致谢。
就好像 tableViewCell 的背景并不重要,就好像它总是清晰的一样。 tableViewCell 的颜色始终与 tableView 匹配。
ok, I have tableView that will show tableViewCell. But I want to make the two to have a different background because if I changed the tableview background the tableviewCell background just changed into the same as tableView. Is there anyway so I could make them into a different background color? thanks in advance.
It's as if the tableViewCell's background doesn't matter as if it's always clear. The color of the tableViewCell always match the tableView.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在 cellForRowAtIndexPath 中检查 indexPath.row 并仅更改两行的背景颜色 -
如果您不使用可重复使用的单元格,则上述方法将起作用。
You can check for indexPath.row in cellForRowAtIndexPath and change the backgroud color for only two rows -
the above will work if you are not using reusable cells.
您可以更改红色、绿色、蓝色值并获得很棒的颜色。
You can change the red , green,blue value and get awesome colors.