所有的cell

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

{

    NSInteger sections = tableView.numberOfSections;

    NSMutableArray *cells = [[NSMutableArray allocinit];

    for (int section = 0; section < sections; section++)

    {

        NSInteger rows =  [tableView numberOfRowsInSection:section];

        for (int row = 0; row < rows; row++)

        {

            NSIndexPath *indexPath = [NSIndexPath indexPathForRow:row inSection:section];

            [cells addObject:indexPath];

        }

    }

    return cells;

}


你可能感兴趣的:(所有的cell)