• 往下滚动,导航栏隐藏


    #pragma mark 下拉导航栏隐藏

    // 当开始滚动视图时,执行该方法。一次有效滑动(开始滑动,滑动一小段距离,只要手指不松开,只算一次滑动),只执行一次。

    - (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView

    {

        //获取开始位置

        beginContentY = scrollView.contentOffset.y;

    }

    // 滑动scrollView,并且手指离开时执行。一次有效滑动,只执行一次。

    // 当pagingEnabled属性为YES时,不调用,该方法

    - (void)scrollViewWillEndDragging:(UIScrollView *)scrollView withVelocity:(CGPoint)velocity targetContentOffset:(inout CGPoint *)targetContentOffset

    {

        //获取结束位置

        endContentY = scrollView.contentOffset.y;

        if(endContentY-beginContentY > 100)

        {

            [UIView animateWithDuration:0.25 animations:^{

                CGRect rect = navBarView.frame;

                rect.origin.y = -64;

                navBarView.frame = rect;

                _myTableView.y = navBarView.BottomY;

                 _myTableView.height = SCREENHEIGHT-50;

            }];

            sectionHeaderHeight = 0;

            [_myTableView reloadData];

        } else if(endContentY-beginContentY < -100)  {

            [UIView animateWithDuration:0.25 animations:^{

                CGRect rect = navBarView.frame;

                rect.origin.y = 0;

               navBarView.frame = rect;

             _myTableView.y = navBarView.BottomY;

                _myTableView.height = SCREENHEIGHT-navBarView.height-50;

            } completion:^(BOOL finished) {

                sectionHeaderHeight = 40;

                [_myTableView reloadData];

            }];

        }

    }

  • 相关阅读:
    POJ2503——Babelfish
    深入理解Spring AOP之二代理对象生成
    怎样让索引仅仅能被一个SQL使用
    Linux下改动Oracle数据库字符集命令
    LeetCode15:3Sum
    【C语言】编写函数实现库函数atoi,把字符串转换成整形
    Scala入门到精通——第二十二节 高级类型 (一)
    J2SE核心开发实战(一)——认识J2SE
    A glance on VDBI
    zookeeper 配置文件说明(zoo.cfg)
  • 原文地址:https://www.cnblogs.com/liaolijun/p/6815689.html
Copyright © 2020-2023  润新知