码迷,mamicode.com
首页 > 移动开发 > 详细

iOS 滑动隐藏导航栏-三种方式

时间:2016-11-25 17:03:59      阅读:540      评论:0      收藏:0      [点我收藏+]

标签:self   tab   mat   out   targe   ted   ide   tableview   方式   

/** 1隐藏导航栏-简单- */
    self.navigationController.hidesBarsOnSwipe = YES;

/** 2隐藏导航栏-不随tableView滑动消失效果 */
//- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
//    //scrollView已经有拖拽手势,直接拿到scrollView的拖拽手势
//    UIPanGestureRecognizer *pan = scrollView.panGestureRecognizer;
//    //获取到拖拽的速度 >0 向下拖动 <0 向上拖动
//    CGFloat velocity = [pan velocityInView:scrollView].y;
//    if (velocity <- 5) {
//        //向上拖动,隐藏导航栏
//        [self.navigationController setNavigationBarHidden:YES animated:YES];
//    }else if (velocity > 5) {
//        //向下拖动,显示导航栏
//        [self.navigationController setNavigationBarHidden:NO animated:YES];
//    }else if(velocity == 0){
//        //停止拖拽
//    }
//}

/** 3隐藏导航栏-手势脱离(加速)消失/出现 */
//- (void)scrollViewWillEndDragging:(UIScrollView *)scrollView withVelocity:(CGPoint)velocity targetContentOffset:(inout CGPoint *)targetContentOffset {
//    if (velocity.y > 0.0) {
//        [self.navigationController setNavigationBarHidden:YES animated:YES];
//    } else if (velocity.y < 0.0){
//        [self.navigationController setNavigationBarHidden:NO animated:YES];
//    }
//}

iOS 滑动隐藏导航栏-三种方式

标签:self   tab   mat   out   targe   ted   ide   tableview   方式   

原文地址:http://www.cnblogs.com/yujidewu/p/6101921.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!