iOS tableview 选中Cell后的背景颜色和文字颜色

做下记录,备忘

改文字颜色其实是UILabel的属性,改背景颜色是cell的属性,都和tableview无关。

iOS tableview 选中Cell后的背景颜色和文字颜色
 cell.textLabel.textColor = BAR_COLOR;
 cell.textLabel.highlightedTextColor = [UIColor whiteColor];

    
    
 UIView *selectedView = [[UIView alloc] init];
 selectedView.backgroundColor = BAR_COLOR;
 cell.selectedBackgroundView = selectedView;
iOS tableview 选中Cell后的背景颜色和文字颜色

iOS tableview 选中Cell后的背景颜色和文字颜色

上一篇:loj 1210 (求最少的加边数使得图变成强连通)


下一篇:深入JVM之类加载器