iPad: Iterate over every cell in a UITableView?
|
|||
|
|
|
To iterate over every visible cell in a UITableView:
(edited to better state answer and hope that this is indexed more accurately for search results with the intention of saving others more time in the future) |
|||||||||
|
|
Assuming a variable
|
||||
|
|
|
(This builds on aroths answer.) I like to define this as a category to (As mentioned a few times, you should be sure you really want to iterate over the cells themselves. For example: I use this to clear the Define like this:
Call like this:
It would be good style to typedef the block, too. |
|||
|
|
cellForRowAtIndexPath:you can set acellproperty of your underlying data structure to point to the initialised cell. Make sure it's an@property (assign)though, not aretain, since you don't want to keep all cells in memory for the sake of reuse. – darvids0n Apr 13 '11 at 5:18