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

  • 相关阅读:
    length()与trim()函数用法
    软件测试面试题集锦
    数据库索引介绍
    sum 函数语法与应用
    报表测试方法与注意事项
    添加、编辑、删除功能测试点
    登陆测试思路总结
    查询功能测试点总结
    case 函数语法与使用
    js获取地址栏上的Id值
  • 原文地址:https://www.cnblogs.com/xuhongwei/p/5151586.html
Copyright © 2011-2022 走看看