美文网首页
iOS 判断UITableView滑动到哪个分区

iOS 判断UITableView滑动到哪个分区

作者: gaookey | 来源:发表于2022-02-10 22:10 被阅读0次
    - (void)scrollViewDidScroll:(UIScrollView *)scrollView {
        
        CGFloat y = scrollView.contentOffset.y;
        
        for (NSInteger i = 0; i < self.models.count; i ++) {
            CGFloat offset = [self.tableView rectForSection:i].origin.y;
            CGFloat height = [self.tableView rectForSection:i].size.height;
            if (y >= offset && y <= offset + height) {
                // 滚动到第 i 组
            }
        }
    }
    

    相关文章

      网友评论

          本文标题:iOS 判断UITableView滑动到哪个分区

          本文链接:https://www.haomeiwen.com/subject/mpmokrtx.html