Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am facing some weird problems. Whenever I scroll my table view, my data gets replaced with other cells. Each time, it gets replaced with different cell data. I am not seeing any particular pattern in this replacement.

share|improve this question
3  
You're not reusing/creating you cells properly. Post your cellForRowAtIndexPath method and we'll be able to point mistakes – Vladimir May 10 '11 at 15:07
2  
Need to see code for tableView:cellForRowAtIndexPath:. – PeyloW May 10 '11 at 15:10

4 Answers

up vote 2 down vote accepted
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:nil] autorelease];
share|improve this answer
Thanks Rams.I got the solution.I didnt give reuseIdentifier and it worked perfect for me. – user714236 May 17 '11 at 14:37
yes this reuseIdentifier:nil is also help me.. – Jayraj Gohil Sep 27 '12 at 10:29
Thank u so much – Uma rajendran Jan 4 at 8:43

Here's code for how to properly reuse a cell:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"CellIdentifier";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {        
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
    }

    // Configure the cell...
    cell.textLabel.text =  [array objectAtIndex:indexPath.row];

    return cell;
}

If you provide your code we could modify that instead of giving you generic examples.

share|improve this answer
Hi,Thanks for your reply.But if I finish bracket for if(cell == nil) after cell allocation line,my date gets overlapped with each other. – user714236 May 10 '11 at 18:16
@user If your dates are overlapping each other that's because you're not handling the dates correctly. This is the right way to handle reusable cells. If you're serious about getting help you should post some code. My guess is that you're either adding a new subview each time or if you're drawing them manually you're not clearing the surface before you draw the date. – Erik B May 10 '11 at 21:41
This is not only an issue of cell reuse. In iOS 6.0, there's a great way to tackle this issue: stavash.wordpress.com/2012/12/14/… – Stavash Dec 14 '12 at 16:07

If you've created a custom cell, you may have to implement prepareForReuse on your UITableViewCell subclass to clear out cell data.

share|improve this answer

Old, but still... I've encountered this problem. If others sees this problem one day. I didn't notice, and don't remember why I did that, but I wrote the configuration of the cell INSIDE the test if (cell == nil) instead of writing it AFTER. I must have been tired this day...

share|improve this answer

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.