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

IF statement in MySQL trigger -

c++ - What does MSC in "// appease MSC" comments mean? -

android - MPAndroidChart - How to add Annotations or images to the chart -