ios 改变tableviewcell 的选中颜色

-(void)ChangeTableViewCellColor:(UITableViewCell *)tableViewCell{// UIColor *color = [[UIColor alloc]initWithRed:0.0 green:0.0 blue:0.0 alpha:1];//通过RGB来定义自己的颜色// tableViewCell.selectedBackgroundView = [[UIView alloc] initWithFrame:tableViewCell.frame];// tableViewCell.selectedBackgroundView.backgroundColor = [UIColor yellowColor]; tableViewCell.selectionStyle = UITableViewCellSelectionStyleNone;//选中时无色}

你可能感兴趣的:(iOS游戏)