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
Post a Comment