获取某一组的所有cell

2016-12-02  本文已影响87人  508e0be44880

#pragma mark -获取某一组的所有cell

-(NSArray*)cellsForTableView:(UITableView*)tableView section:(NSInteger)section

{

NSMutableArray*cells = [[NSMutableArrayalloc]init];

NSIntegerrows =[tableViewnumberOfRowsInSection:section];

for(introw =0; row < rows; row++) {

NSIndexPath*indexPath = [NSIndexPathindexPathForRow:rowinSection:section];

[cellsaddObject:[tableViewcellForRowAtIndexPath:indexPath]];

}

returncells;

}

上一篇下一篇

猜你喜欢

热点阅读