Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I don't know if this is specific to UITableViewCells but rather general for UIViews (as i believe) but i noticed the problem with a cell.

As mentioned, I have a custom UITableViewCell subclass which loads itself from a xib when it gets initialized with an designated init:

- (id)initWithReuseIdentifier:(NSString *)reuseIdentifier
{
    NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"MyCell" owner:nil options:nil];
    self = [nib objectAtIndex:0];
    if (self) {
        // Initialization code
        _reuseIdentifier = reuseIdentifier;
    }
    return self;
}

It has a UILabel as an outlet and I set some properties of it in the awakeFromNib method:

- (void)awakeFromNib{
    [super awakeFromNib];

    self.labelLeft.textColor = [UIColor grayColor];
    self.labelLeft.font = [UIFont boldSystemFontOfSize:15.0f];
}

The point is, that the label doesn't keep the textColor nor the font and I don't understand why.
awakeFromNib gets called and the outlet is connected right, since i can set the text.

I can make it work by settings those properties after I set his text in the UITableViewDataSource but I don't feel it's the right way and I want to understand why this doesn't work.

Question:
Why doesn't it keep the Font and Textcolor and what can I do to make it work the right way?

share|improve this question
"which loads itself from a xib" - here's the problem. I bet if you created the cell programmatically, it would work. – H2CO3 Dec 19 '12 at 16:51
Yeah, if i would have it done all by code it definitely would have worked. But i want to know why this doesn't work. – yinkou Dec 19 '12 at 16:53
Well it kinda works. It just doesn't keep the color and Font... – yinkou Dec 19 '12 at 16:54
1  
up'd because of the title – Yunus Nedim Mehel Dec 19 '12 at 17:03
"If there is no answer after 30 min. on StackOverflow, there is no solution to your problem." - quote anonymous da internez. – yinkou Dec 19 '12 at 17:24

1 Answer

Set the attributes of the label in the nib-file. If you split your interface configuration to different places this causes just trubble.

If you don't want to do that move the configuration of the label into viewDidLoad:

share|improve this answer
My question was why it doesn't work, not what can I do else. – yinkou Mar 5 at 18:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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