ios - Does UITableView have an array property that holds all of the cells? -


in 1 of methods want iterate between cells have , perform changes on them, like:

for (uitableviewcell *cell in ___________) {      cell.accessorytype = accessorytype = uitableviewcellaccessorycheckmark; } 

so there property complete ____________ ?

tnx!

there visible cells array self.tableview.visiblecells

for (uitableviewcell *cell in self.tableview.visiblecells) {      cell.accessorytype = accessorytype = uitableviewcellaccessorycheckmark; } 

Comments

Popular posts from this blog

android - How to save instance state of selected radiobutton on menu -

python 3 IndexError: list index out of range -

IF statement in MySQL trigger -