摘要: 做下记录,备忘改文字颜色其实是UILabel的属性,改背景颜色是cell的属性,都和tableview无关。 cell.textLabel.textColor = BAR_COLOR; cell.textLabel.highlightedTextColor = [UIColor whiteColor]; UIView *selectedView = [[UIView alloc] init]; selectedView.backgroundColor = BAR_COLOR; cell.selectedBackgroundView = selectedView; 阅读全文
posted @ 2014-01-22 15:16 幻化成疯 阅读(965) 评论(0) 推荐(0) 编辑