• 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;
    }

  • 相关阅读:
    Linux搭建ElasticSearch环境
    从DDD开始说起
    TFS看板晨会
    TFS看板的迭代规划
    TFS看板规则
    TFS看板的设计
    Api容器在应用架构演化中的用途
    基于Abp的WebApi容器
    线程队列
    动态类型序列化
  • 原文地址:https://www.cnblogs.com/xuhongwei/p/5151586.html
Copyright © 2020-2023  润新知