如何在选择单元格以导航另一个viewcontroller类时更改渐变单元格图像颜色

时间:2011-05-05 11:30:24

标签: iphone objective-c uitableview

below cell selected image an gradient image every cell have an gradient image but when select any cell to navigate to another class gradient cell color should be orange

Cell已经有一张图片(大小为320 * 103)和文字 - 来自'Raly To Restore Sanity And'的高点和低点,如第一个单元格所示。

我的问题是当我选择任何行导航到detailsViewController时,cellimage(大小为320 * 103)颜色应该如下图所示改变imageColor(橙色)(例如第三行)。怎么做?

2 个答案:

答案 0 :(得分:3)

请查看stackoverflow这对您有所帮助。

答案 1 :(得分:1)

UIImageView*    paneon = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 330, 139)];
    [paneon setImage:[UIImage imageNamed:@"bc-pane-01-on.png"]];//[NSString stringWithFormat:@"%@.png", todo.empphoto]]];
    paneon.opaque = YES; 

    cell.selectedBackgroundView=paneon;                                      

由于

Arun kumar OD