UITableView获取当前屏幕的最小section
UITableView当在滑动的时候,我们如何来获取当前屏幕上最小的显示section呢?苹果提供了如下的方法来获取。
NSInteger firstVisibleSection = GID_MAX;
NSArray *indexPaths = [tableView indexPathsForVisibleRows];
for (NSIndexPath *path in indexPaths) {
firstVisibleSection = MIN(firstVisibleSection, path.section);
}
if (firstVisibleSection == GID_MAX) {
return;
}