views:

46

answers:

2

I an getting same value in my tableview after the 11 row. after the 11th row again the name of row start as first row.

+1  A: 

How unfortunate. Perhaps if you told us something about how you're populating the tableview, someone might be able to help you.

http://www.catb.org/~esr/faqs/smart-questions.html

NSResponder
+1  A: 

In your table view data source you are probably calling dequeue to get a recycled UITableViewCell instance. If it returns nil, you are creating a new cell and putting the right data in it. If it returns a recycled cell, you are probably not updating it.

Move your updating code so that it is executed whether the cell is recycled or new.

benzado