在自定义TableViewCell的时候遇到这样一个问题,本想不使用TableView自带的separator,而是自己用UIView画出一条分隔线。
结果在选中某行Cell的时候,这条分隔线就消失了,解决办法:
重写-setSelected:animated:和-setHighlighted:animated:方法
// 分隔线@property(nonatomic,weak)IBOutletUIView*separatorLine;// override- (void)setHighlighted:(BOOL)highlighted animated:(BOOL)animated{ [supersetHighlighted:highlighted animated:animated];self.separatorLine.backgroundColor= [UIColorb lackColor];}- (void)setSelected:(BOOL)selected animated:(BOOL)animated{ [supersetSelected:selected animated:animated];self.separatorLine.backgroundColor= [UIColorblackColor];}