项目需求,cell的自定义contentView没有占满整个cell,导致点击时点击效果很难看,可以自定义cell的点击背景及颜色,label也可以定义highlLighted的字体颜色
自定义cell背景及颜色
cell.selectedBackgroundView= [[UIViewalloc]initWithFrame:self.frame];
cell.selectedBackgroundView.backgroundColor=COLOR(243,245,249,1);
定义label highLight字体颜色
label.highlightedTextColor= [UIColorblackColor];