简体   繁体   中英

Custom Cell - Change color of background and button in custom cell

I have a custom cell that I have made in the iterfacebuilder and connected to my .h file.

And then in my CustomCell.m file I have

@implementation TwoMealsTableViewCell

@synthesize dayLabel, firstMealBtn, secondMealBtn, indexPath;

- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier {
    self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];

    dayLabel.textColor = [UIColor orangeColor];

    if (self) {

        dayLabel.textColor = [UIColor orangeColor];


    }

    return self;
}


- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
    [super setSelected:selected animated:animated];

    // Configure the view for the selected state
}

@end

And I have the cell all set up in the tableview, and I see the buttons, and labels, but I don't see the color change?

Why is this.

Thanks for the help in advance!!!

这将改变单元格的颜色

dayLabel.textColor = [UIColor orangeColor];

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM