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

    -(void)scrollViewDidScroll:(UIScrollView *)scrollView

    {
       [self.navigationController.navigationBar setBackgroundImage:[self imageWithBgColor:[UIColor colorWithRed:self.tableView.contentOffset.y/255 green:255/255 blue:255/255 alpha:1]] forBarMetrics:UIBarMetricsDefault];
        NSLog(@"contentOffset====%f",self.tableView.contentOffset.y);
        if (self.tableView.contentOffset.y < 0) {
            self.Myview .hidden = YES;
            
        }

    }
    -(UIImage *)imageWithBgColor:(UIColor *)color {
        
        CGRect rect = CGRectMake(0.0f, 0.0f, 1.0f, 1.0f);
        
        UIGraphicsBeginImageContext(rect.size);
        
        CGContextRef context = UIGraphicsGetCurrentContext();
        
        CGContextSetFillColorWithColor(context, [color CGColor]);
        
        CGContextFillRect(context, rect);
        
        UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
        
        UIGraphicsEndImageContext();
        
        return image;
        
    }

  • 相关阅读:
    MVC框架简介
    模型-视图-控制器模式
    高德地图基本开发
    质量属性的六个常见属性场景分析
    架构漫谈读后感
    第十周
    第九周总结
    第八周总结
    springboot基于mybatis的pegehelper分页插件
    webmagic之爬取数据存储为TXT
  • 原文地址:https://www.cnblogs.com/xuhongwei/p/5156750.html
Copyright © 2011-2022 走看看