码迷,mamicode.com
首页 > 移动开发 > 详细

ios晋级之路-tableViewCell设置背景颜色

时间:2015-08-21 15:32:28      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:

如果你项修改一下cell的颜色的话cell.contentView.backgroundColor = [UIColor redColor];

这样是没有问题的,但是如果你想把其修改成无色,那么就不可以了。

所以    

为了改变单元格的背景色,你需要修改

1
2
3
4
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
    cell.backgroundColor = [UIColor redColor]; 
}

contentView 仅仅是建议 subview 放入自定义控件,这样单元格能在表格编辑时适当的布局。

ios晋级之路-tableViewCell设置背景颜色

标签:

原文地址:http://www.cnblogs.com/fanxinguu/p/4747775.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!