cell在选中的时候子控件的背景色没啦

解:需重写cell的高亮状态,让cell在高亮时在设置子控件的背景色。


- (void)setHighlighted:(BOOL)highlighted animated:(BOOL)animated

{

UIColor*backgroundColor =self.limit.backgroundColor;

[supersetHighlighted:highlightedanimated:animated];

//重点代码

self.limit.backgroundColor= backgroundColor;

}

你可能感兴趣的:(cell在选中的时候子控件的背景色没啦)