TableViewCell添加UIView,点击消失问题

2015-06-10  本文已影响1795人  botherbox

在自定义TableViewCell的时候遇到这样一个问题,本想不使用TableView自带的separator,而是自己用UIView画出一条分隔线。
结果在选中某行Cell的时候,这条分隔线就消失了,解决办法:

// 分隔线
@property (nonatomic, weak) IBOutlet UIView *separatorLine;

// override
- (void)setHighlighted:(BOOL)highlighted animated:(BOOL)animated
{
    [super setHighlighted:highlighted animated:animated];
    self.separatorLine.backgroundColor = [UIColor b lackColor];
}

- (void)setSelected:(BOOL)selected animated:(BOOL)animated
{
    [super setSelected:selected animated:animated];
    self.separatorLine.backgroundColor = [UIColor blackColor];
}
上一篇下一篇

猜你喜欢

热点阅读