zoukankan      html  css  js  c++  java
  • 第三十九篇、NavBar动态隐藏、设置透明、毛玻璃效果

    1.动态隐藏

    - (void)viewDidLoad {
        [super viewDidLoad];
    
        if ([self respondsToSelector:@selector(automaticallyAdjustsScrollViewInsets)]) {
            self.automaticallyAdjustsScrollViewInsets = NO;
        }
        
        //  1.tableView
        [self.view addSubview:self.tableView];
    }
    
    #pragma mark - 滑动隐藏导航栏
    - (void)scrollViewDidScroll:(UIScrollView *)scrollView
    {
        CGFloat offsetY = scrollView.contentOffset.y + _tableView.contentInset.top;//注意
        CGFloat panTranslationY = [scrollView.panGestureRecognizer translationInView:self.tableView].y;
        
        if (offsetY > 64) {
            if (panTranslationY > 0) { //下滑趋势,显示
                [self.navigationController setNavigationBarHidden:NO animated:YES];
            }
            else {  //上滑趋势,隐藏
                [self.navigationController setNavigationBarHidden:YES animated:YES];
            }
        }
        else {
            [self.navigationController setNavigationBarHidden:NO animated:YES];
        }
        
    //    NSLog(@"%lf %lf", [scrollView.panGestureRecognizer translationInView:self.tableView].y, offsetY);
    }

    2.设置透明

    [[[self.navigationController.navigationBar subviews] objectAtIndex:0] setAlpha:_alphaMemory];
  • 相关阅读:
    MySQL的双主配置
    MySQL主从复制配置部署
    Linux centOS安装MySQL
    hive搜索报错
    常用设计模式
    Cookie禁用 获取session
    排序算法
    MySQL优化
    javascript Map和Set
    ThinkPHP的基本操作
  • 原文地址:https://www.cnblogs.com/HJQ2016/p/5917655.html
Copyright © 2011-2022 走看看