iOS监听tableView组头切换事件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS监听tableView组头切换事件相关的知识,希望对你有一定的参考价值。

- (void)tableView:(UITableView *)tableView willDisplayHeaderView:(UIView *)view forSection:(NSInteger)section 组头将要出现的时候系统会调用;

- (void)tableView:(UITableView *)tableView didEndDisplayingHeaderView:(UIView *)view forSection:(NSInteger)section 组头出现的时候系统会调用;

利用以上两个方法可以判断出组头被顶出和组头又下拉回来事件,还有其他的组头相关动作可以监听需自己去编写。

_currentSection:当前显示的组头

_isUpScroll:是否是上拉滚动

_isFirstLoad:是否第一次加载tableView

_oldY:滚动的偏移量

 

- (void)tableView:(UITableView *)tableView willDisplayHeaderView:(UIView *)view forSection:(NSInteger)section{

    if(!_isUpScroll && (_currentSection - section) == 1){

       //最上面组头(不一定是第一个组头,指最近刚被顶出去的组头)又被拉回来

        _currentSection = section;

        NSLog(@"willDisplayHeaderView显示第%ld",(long)section);

    }

}

 

- (void)tableView:(UITableView *)tableView didEndDisplayingHeaderView:(UIView *)view forSection:(NSInteger)section{

    if(!_isFirstLoad && _isUpScroll){

        _currentSection = section + 1;

        //最上面的组头被顶出去

        NSLog(@"didEndDisplayingHeaderView显示第%ld",(long)section + 1);

    }

}

 

- (void)scrollViewDidScroll:(UIScrollView *)scrollView{

    if ([scrollView isEqual: self.tableView]) {

        if (self.tableView.contentOffset.y > _oldY) {

            // 上滑

            _isUpScroll = YES;

            NSLog(@"上滑");

        }

        else{

            // 下滑

            _isUpScroll = NO;

            NSLog(@"下滑");

        }

        _isFirstLoad = NO;

    }

}

 

- (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView{

    // 获取开始拖拽时tableview偏移量

    _oldY = self.tableView.contentOffset.y;

}

以上是关于iOS监听tableView组头切换事件的主要内容,如果未能解决你的问题,请参考以下文章

tableView组头 组尾滑动

Xamarin.iOS - >当用户在 iPhone 上从响铃/静音模式切换时是不是有要监听的事件?

iOS Table View Cell 自定义左滑按钮及事件(系统自带方法)

ios 怎样获取在tableview上的键盘高度

iOS-TableView中cell的显示与隐藏

UICollectionView 自定义组头组尾的XIB方法