我是靠谱客的博主 怕黑电话,最近开发中收集的这篇文章主要介绍iOS 导航栏颜色渐变,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

#import "ViewController.h"

@interface ViewController ()<UITableViewDelegate>
@property (nonatomic,strong)UIImageView * back;
@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    
    //设置透明
    [self.navigationController.navigationBar setBackgroundImage:[UIImage new] forBarMetrics:UIBarMetricsDefault];
    self.navigationController.navigationBar.shadowImage = [UIImage new];
    //设置颜色
    //self.navigationController.navigationBar.barTintColor = [UIColor redColor];
    
    self.navigationItem.title = @"哈哈哈哈哈";
    
    _back = self.navigationController.navigationBar.subviews.firstObject;
    
    self.view.backgroundColor = [UIColor whiteColor];
    
    self.automaticallyAdjustsScrollViewInsets = NO;
    UITableView * tableView = [[UITableView alloc]initWithFrame:[UIScreen mainScreen].bounds style:UITableViewStylePlain];
    tableView.delegate =self;
    tableView.dataSource = self;
    [tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:@"cell"];
    [self.view addSubview:tableView];
    
    UIImageView * image = [[UIImageView alloc]initWithImage:[UIImage imageNamed:@"7b8ccd89ea7a7eca7020383ee1a0089e.jpg"]];
    image.frame = CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, 150);
    tableView.tableHeaderView = image;
    
    
    // Do any additional setup after loading the view, typically from a nib.
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
    return 100;
}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
    return 30;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    UITableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:@"cell" forIndexPath:indexPath];
    cell.textLabel.text = [[NSString alloc]initWithFormat:@"%ld",indexPath.row];
    
    return cell;
}
- (void)scrollViewDidScroll:(UIScrollView *)scrollView{

    //从有色变无色  上面必须先设置颜色
   // _back.alpha = 1 - scrollView.contentOffset.y/1000;
    
    
    //从无色变有色  上面必须先设置透明
    NSLog(@"%f",scrollView.contentOffset.y);
    _back.alpha = scrollView.contentOffset.y/1000;
    _back.backgroundColor = [UIColor redColor];
    
    
}
- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}


@end

最后

以上就是怕黑电话为你收集整理的iOS 导航栏颜色渐变的全部内容,希望文章能够帮你解决iOS 导航栏颜色渐变所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(56)

评论列表共有 0 条评论

立即
投稿
返回
顶部