在自定义TableViewCell的时候遇到这样一个问题,本想不使用TableView自带的separator,而是自己用UIView画出一条分隔线。
结果在选中某行Cell的时候,这条分隔线就消失了,解决办法:
- 重写
-setSelected:animated:
和-setHighlighted:animated:
方法
// 分隔线
@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];
}