views:

266

answers:

1

Hello,

Is there a way I can iterate over a list of UITableViewCells contained in an indexPath.section?

Thanks

A: 

You can use UITableView's cellForRowAtIndexPath: to get a cell at a specific index. But this will only return a cell if it is currently visible in the table.

What are you really trying to do? Why do you need all cells in a section?

St3fan
Does it really only return a cell if it is visible? Or is it only called if the cell is visible?
blindJesse