zoukankan      html  css  js  c++  java
  • iOS滑动tableView来改变导航栏的颜色

    - (void)viewDidLoad {

    [super viewDidLoad];
    [self initTableView];
    }
    - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
    return 1;
    }
    - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
    return 10;
    }
    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    UITableViewCell *cell=[self tableViewZ:self.myTableView cellForRowAtIndexPath:indexPath];
    return cell;
    }
    - (UITableViewCell *)tableViewZ:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    UITableViewCell *cell=[[UITableViewCell alloc]init];
    return cell;
    }
    - (void)scrollViewDidScroll:(UIScrollView *)scrollView{
    NSLog(@"offset---scroll:%f",self.myTableView.contentOffset.y);
    UIColor *color=[UIColor redColor];
    CGFloat offset=scrollView.contentOffset.y;
    if (offset<0) {
    self.navigationController.navigationBar.backgroundColor = [color colorWithAlphaComponent:0];
    }else {
    CGFloat alpha=1-((64-offset)/64);
    self.navigationController.navigationBar.backgroundColor=[color colorWithAlphaComponent:alpha];
    }
    }
    - (void)initTableView{
    self.myTableView.delegate=self;
    self.myTableView.dataSource=self;
    }

  • 相关阅读:
    Vue2.5
    Vue --- :is
    Vue面试中经常会被问到的面试题
    100道JS构造函数面试题
    100道前端面试题
    占位
    06-验证码-基本功能实现
    由ES规范学JavaScript(二):深入理解“连等赋值”问题
    JS中keyup, keypress, keydown以及oninput四个事件的区别
    Java中class的声明
  • 原文地址:https://www.cnblogs.com/edensyd/p/8473184.html
Copyright © 2011-2022 走看看