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 have UITableViewController. In cellForRowAtIndexPath method I added custom setup for label:

UILabel *lblMainLabel = [[UILabel alloc]initWithFrame:CGRectMake(50, 9, 150, 25)];
    lblMainLabel.text = c.Name;
    lblMainLabel.font = [UIFont fontWithName:@"Helvetica-Bold" size:20];
    lblMainLabel.backgroundColor = [UIColor clearColor];
    lblMainLabel.textColor = [UIColor whiteColor];
    [cell.contentView addSubview:lblMainLabel];
    [lblMainLabel release];

But when I scroll UP or DOWN in table it always add this label on top of previous what I miss?

share|improve this question

2 Answers

up vote 10 down vote accepted

you should create the UILabel exactly one time, when you create the cell.

Your code should look like this:

if (cell == nil) {
   cell = ...
   UILabel *lblMainLabel = [[UILabel alloc]initWithFrame:CGRectMake(50, 9, 150, 25)];
   lblMainLabel.tag = 42;
   lblMainLabel.font = [UIFont fontWithName:@"Helvetica-Bold" size:20];
   lblMainLabel.backgroundColor = [UIColor clearColor];
   lblMainLabel.textColor = [UIColor whiteColor];
   [cell.contentView addSubview:lblMainLabel];
   [lblMainLabel release];
}
UILabel *lblMainLabel = [cell viewWithTag:42];
lblMainLabel.text = c.Name;
share|improve this answer
That's it. Thanks :) – 1110 Feb 11 '11 at 10:29
Why should the tag be of the number 42? Or doesn't it really matter? – Eru Rōraito Jan 28 at 9:09
The tag is of course an arbitrary number. But you have to use the same number when you assign the tag and when you retrieve the view with the tag. – Matthias Bauch Jan 29 at 19:06
Perfect one! Thanks.. – ersentekin Apr 25 at 22:18

Yes fluchtpunkt, you are right. cellForRowAtIndexPath gets fired every times the tableview scrolls, it will reloads the data.

if (cell == nil)
{

}

will get fired once the cell is allocating. else memory also gets increased.

share|improve this answer
1  
If you agree with an answer please upvote it and, perhaps, add a comment. This isn't really an "answer." – Stephen Darlington Feb 11 '11 at 10:28
ok. thanks for your advice Stephen. – Jayahari V Feb 11 '11 at 10:38

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.