获取显示在屏幕上的所有cell的indexPath值
NSArray *showIndexPaths = self.tableView.indexPathsForVisibleRows;
获取显示在屏幕上的所有cell
NSArray *showCells = self.tableView.visibleCells;
获取显示在屏幕上的所有cell的indexPath值
NSArray *showIndexPaths = self.tableView.indexPathsForVisibleRows;
获取显示在屏幕上的所有cell
NSArray *showCells = self.tableView.visibleCells;