I have a UITableView Controller and a UITableView. Everything is set up for me with the help of delegates, etc., and it fills perfectly. I noticed a small error, but with the following method:
: cellForRowAtIndexPath
I notice that this method is constantly being called every time I look at the table. Even after the table is full, it continues to ring. Basically, a cell goes out of sight, when it returns to sight, it calls it up again. My NSLog has printed the contents of the cell inside this method, and I know that it continues to call.
If this function does not just call once per cell to fill it, then do?
objective-c xcode uitableview ios4
Chris
source share