Hello,
Is there a way I can iterate over a list of UITableViewCells contained in an indexPath.section?
Thanks
Hello,
Is there a way I can iterate over a list of UITableViewCells contained in an indexPath.section?
Thanks
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?