UITableViewCell子类,当选中时会消失UIImageView

时间:2013-08-30 03:27:03

标签: ios uitableview

我有一个子类UITableViewCell,工作正常,选中后,它有自定义单元格颜色和文本颜色,并保持选中状态,直到选中其他单元格。

问题是,我在这个单元格中有一个UIImageView,当它没有选中它时显示,但是如果选中了单元格,UIImageView就会消失,

这是我的代码,

#import "MMSideDrawerTableViewCell.h"

@implementation MMSideDrawerTableViewCell

- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
    self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
    if (self) {


        UIView * backgroundView = [[UIView alloc] initWithFrame:self.bounds];
        [backgroundView setAutoresizingMask:UIViewAutoresizingFlexibleHeight|UIViewAutoresizingFlexibleWidth];


        [backgroundView setBackgroundColor:[UIColor colorWithRed:77.0/255.0
                                                           green:79.0/255.0
                                                            blue:80.0/255.0
                                                           alpha:1.0]];

        [self setBackgroundView:backgroundView];

        UIView *sa = [[UIView alloc]initWithFrame:CGRectMake(180, 4, 20, 20)];
        sa.backgroundColor = [UIColor greenColor];
        [self.contentView addSubview:sa];

        [self.textLabel setTextColor:[UIColor
                                      colorWithRed:230.0/255.0
                                      green:236.0/255.0
                                      blue:242.0/255.0
                                      alpha:1.0]];
        [self.textLabel setShadowColor:[[UIColor blackColor] colorWithAlphaComponent:.5]];
        [self.textLabel setShadowOffset:CGSizeMake(0, 1)];
        [self.textLabel setFont:[UIFont boldSystemFontOfSize:16.0]];



        //highlited
         UIImageView *selectionColor = [[UIImageView alloc] init];
        selectionColor.backgroundColor = [UIColor blackColor];
        self.selectedBackgroundView = selectionColor;

        self.textLabel.highlightedTextColor = [UIColor colorWithRed:49/255.0f green:101/255.0f blue:135/255.0f alpha:1];

     }
    return self; 
} 


@end

有什么问题? 如何用选定的单元格显示我的图像?

编辑 如果我为后台选择状态注释该行,它仍然会隐藏图标uiImageView

    //self.selectedBackgroundView = selectionColor;

谢谢!

1 个答案:

答案 0 :(得分:3)

您的自定义视图看起来只是一个彩色UIView。选择UITableViewcell后,其中的所有子视图都会在突出显示时更改其背景颜色。您需要的不仅仅是具有设置背景颜色的UIView。你需要UIImageView,或者其他一些东西。