vote up 3 vote down star
2

A UITableViewCell comes "pre-built" with a UILabel as its one and only subview after you've init'ed it. I'd really like to change the background color of said label, but no matter what I do the color does not change. The code in question:

UILabel* label = (UILabel*)[cell.contentView.subviews objectAtIndex:0];
label.textColor = [UIColor whiteColor];
label.backgroundColor = [UIColor darkGrayColor];
label.opaque = YES;

Any hints as to why this doesn't work? Thanks!

flag

75% accept rate

2 Answers

vote up 7 vote down check

Your code snippet works fine for me, but it must be done after the cell has been added to the table and shown, I believe. If called from the initWithFrame:reuseIdentifier:, you'll get an exception, as the label subview has not yet been created.

Probably the best solution is to add your own UILabel, configured to your standards, rather than relying on this (very rickety) path to the built-in one.

link|flag
Well, the reason I ask in the first place is because I want to rely on the rickety path, ie: I don't want to have to create my own subview (yup, I'm that lazy). You say my code works for you in that it changes the background color? Can you be more specific on how you got it working? – rpj Oct 21 '08 at 17:16
I'm lazy too, but this is dangerous ;-) I added a deferred call in the init method of my cell that called your code. It changed the background color (and text color, of course). – Ben Gottlieb Oct 21 '08 at 17:31
Ah, I get what you're saying now... and you're right, that seems pretty damn dangerous. Thanks! – rpj Oct 21 '08 at 17:40
vote up 0 vote down

Add your own label to the contentView when you are allocating the cell, rather than relying on the extraction of the built in one. Then you can control all values:

UILabel* label = [[[UILabel alloc] init] autorelease];
label.textColor = [UIColor whiteColor];
label.backgroundColor = [UIColor darkGrayColor];
label.opaque = YES;
[cell.contentView addSubview:label];
link|flag
This doesn't seem to work at all, at least not from within tableView:cellForRowAtIndexPath: where I'm trying to get things working. Any hints? – rpj Oct 22 '08 at 6:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.