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.
NSResponder
2009-12-03 05:52:41
+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
2009-12-03 08:51:34