在分组的UITableViewCell中指定backgroundcolor

时间:2011-08-22 12:32:03

标签: iphone ios uitableview background-color

有没有办法为单元格设置选定的背景颜色?目前我正在使用此代码:

    UIImageView* selectedBackgroundCell = [[[UIImageView alloc] initWithFrame:CGRectNull] autorelease];
    [selectedBackgroundCell setImage:[UIImage imageNamed:@"cell_hover_bg.png"]];
    [cell setSelectedBackgroundView:selectedBackgroundCell];


    [cell setBackgroundColor:[UIColor colorWithPatternImage:[UIImage imageNamed:@"cell_bg.png"]]];

结果如下: enter image description here

不幸的是,正如我预期的那样,在选定模式下边框不能很好地绘制。 你知道怎么解决这个问题吗?

1 个答案:

答案 0 :(得分:0)

据我所知,唯一的方法是创建2个新图像:页眉和页脚,并在请求的行是第一个或最后一个时加载它们。