获取显示在屏幕上的所有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;
本文标题:怎么知道cell是否在屏幕中?
本文链接:https://www.haomeiwen.com/subject/ggnsnctx.html
网友评论