IOS UITableViewCell 改detailTextLabel样式问题

例如 要改cell.detailTextLabel.backgroundColor = [UIColor orangeColor]; 这代码如果在初始化的时候是起不到效果的 ,如果要改变他的样式可以在代理中

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath; 去改就起到作用了


如果要改cell的透明度也可以在这边改cell 的contentView 的alpha值

你可能感兴趣的:(IOS UITableViewCell 改detailTextLabel样式问题)