iOS实现头部拉伸效果

所属分类: 软件编程 / IOS 阅读数: 1612
收藏 0 赞 0 分享

本文实例为大家分享了iOS实现头部拉伸效果展示的具体代码,供大家参考,具体内容如下

主要涉及到导航栏透明度、图片拉伸、列表头部等。

  • 导航栏透明度的实现。
  • 列表拖动距离的监听,及图片放大的实现。

导航透明度的设置

添加系统导航栏的Category实现

声明部分:

@interface UINavigationBar (BackgroundColor)
- (void)lt_setBackgroundColor:(UIColor *)color;
@end

实现部分:

#import <objc/runtime.h>

@implementation UINavigationBar (BackgroundColor)
static char overlayKey;

- (UIView *)overlay
{
  return objc_getAssociatedObject(self, &overlayKey);
}

- (void)setOverlay:(UIView *)overlay
{
  objc_setAssociatedObject(self, &overlayKey, overlay, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
}

- (void)lt_setBackgroundColor:(UIColor *)color
{
  if (!self.overlay) {
    [self setBackgroundImage:[UIImage new] forBarMetrics:UIBarMetricsDefault];
    // insert an overlay into the view hierarchy
    self.overlay = [[UIView alloc] initWithFrame:CGRectMake(0, -20, [UIScreen mainScreen].bounds.size.width, self.bounds.size.height + 20)];
    self.overlay.autoresizingMask = UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight;
    [self insertSubview:self.overlay atIndex:0];
  }
  self.overlay.backgroundColor = color;
}

@end

监听列表拖动及实现图片放大

主要是监听滚动的距离(scrollViewDidScroll:方法)

#import "StretchViewController.h"
#import "UINavigationBar+BackgroundColor.h"

// 背景图片的宽高比例
#define ratio 0.8

@interface StretchViewController () <UITableViewDelegate, UITableViewDataSource>

// 可放大的背景图片
@property (nonatomic, strong) UIImageView *bgView;
// 记录原始大小
@property (assign) CGRect originalFrame;

@property (nonatomic, strong) UITableView *tableView;
@end

@implementation StretchViewController

- (void)viewWillAppear:(BOOL)animated
{
  [super viewWillAppear:animated];
  //[self.navigationController setNavigationBarHidden:YES animated:animated];

  //self.navigationController.navigationBar.tintColor = [UIColor whiteColor];
  //self.navigationController.navigationBar.barTintColor = [UIColor clearColor];
  //self.navigationController.navigationBar.backgroundColor = [UIColor clearColor];
  // 设置导航栏底部分割线为透明
  [self.navigationController.navigationBar setShadowImage:[UIImage new]];
}

- (void)viewDidLoad {
  [super viewDidLoad];
  // 设置全透明
  [self.navigationController.navigationBar lt_setBackgroundColor:[[UIColor greenColor] colorWithAlphaComponent:0]];

  // Do any additional setup after loading the view.
  self.view.backgroundColor = [UIColor lightGrayColor];

  self.bgView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, self.view.bounds.size.width, self.view.bounds.size.width*ratio)];
  self.bgView.image = [UIImage imageNamed:@"bg-mine"];
  self.originalFrame = self.bgView.frame;
  [self.view addSubview:self.bgView];

  self.tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 64, self.view.bounds.size.width, self.view.bounds.size.height-64) style:UITableViewStylePlain];
  self.tableView.backgroundColor = [UIColor clearColor];
  self.tableView.showsVerticalScrollIndicator = NO;
  self.tableView.delegate = self;
  self.tableView.dataSource = self;

  // 1. contentInset
  //table.contentInset = UIEdgeInsetsMake(160, 0, 0, 0);

  // 2. heatView
  UIView *headView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, self.view.bounds.size.width, 160)];
  headView.backgroundColor = [UIColor clearColor];
  self.tableView.tableHeaderView = headView;
  [self.view addSubview:self.tableView];
}

- (nonnull UITableViewCell *)tableView:(nonnull UITableView *)tableView cellForRowAtIndexPath:(nonnull NSIndexPath *)indexPath {
  UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cellIdentifier"];
  if (cell == nil) {
    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:@"cellIdentifier"];
  }
  cell.textLabel.text = @"测试数据";
  return cell;
}

- (NSInteger)tableView:(nonnull UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
  return 10;
}

- (void)scrollViewDidScroll:(UIScrollView *)scrollView
{

  CGFloat yOffset = scrollView.contentOffset.y; // 向上滑动,offset是增加的;向下滑动,是减少的
  if (yOffset < 160) { // 当滑动到导航栏底部时
    CGFloat colorAlpha = yOffset/160;

//    self.navigationController.navigationBar.backgroundColor = [[UIColor whiteColor] colorWithAlphaComponent:colorAlpha];
    [self.navigationController.navigationBar lt_setBackgroundColor:[[UIColor whiteColor] colorWithAlphaComponent:colorAlpha]];

  } else { // 超过导航栏底部了
    [self.navigationController.navigationBar lt_setBackgroundColor:[UIColor whiteColor]];
  }

  // 往上滑动效果、处理放大效果
  if (yOffset > 0) {
    self.bgView.frame = ({
      CGRect frame = self.bgView.frame;
      frame.origin.y = self.originalFrame.origin.y - yOffset;
      frame;
    });
  } else { // 往下移动,放大效果
    self.bgView.frame = ({
      CGRect frame = self.originalFrame;
      frame.size.height = self.originalFrame.size.height - yOffset;
      frame.size.width = frame.size.height/ratio;

      //
      frame.origin.x = self.originalFrame.origin.x - (frame.size.width - self.originalFrame.size.width)/2;
      frame;
    });
  }

}
@end

以上是对系统原生的导航栏进行透明度设置。

也可进行自定义视图设置为导航栏

效果如下:

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

更多精彩内容其他人还在看

iOS 委托与文本输入(内容根据iOS编程编写)

这篇文章主要介绍了iOS 委托与文本输入(内容根据iOS编程编写) 的相关资料,需要的朋友可以参考下
收藏 0 赞 0 分享

iOS实现只有底部边框线的输入框示例代码

这篇文章给大家分享了一种利用iOS实现只有底部边框线的输入框,其实这个效果也挺常见的,本文给出了示例代码,下面来看看如何实现这种效果。
收藏 0 赞 0 分享

iOS如何获取当前View所在控制器的方法

在开发iOS的时候经常需要获取当前View所在的控制器,下面小编给大家分享个方法,文章给出了示例代码,对大家的学习和理解很有帮助,下面来一起看看吧。
收藏 0 赞 0 分享

iOS10实现推送功能时的注意点和问题总结

很多朋友都反馈,发现了iOS9升级到iOS10推送功能不正常的问题,所以这篇文章总结了一下要点,亲们可以根据以下步骤,逐步排查问题,也可以逐步实现iOS10的推送功能。下面来一起看看吧。
收藏 0 赞 0 分享

iOS实现滚动字幕的动画特效

这篇文章给大家带来一款应用非常实用的控件,滚动字幕,可以应用在新闻、财经、聊天等各类APP上,B格瞬间提升了一个档次有木有,下面跟着小编一起看看如何实现的吧。
收藏 0 赞 0 分享

iOS动画教你编写Slack的Loading动画进阶篇

这篇文章主要为大家进一步详细介绍了iOS动画教你编写Slack的Loading动画,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享

iOS获取到用户当前位置

这篇文章主要为大家详细介绍了iOS获取到用户当前位置,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享

Mac下获取AppStore安装包文件路径

本文介绍了Mac下如何找到AppStore下载的安装包路径,以及如何提取出来供以后使用的相关步骤,希望对大家有所帮助。
收藏 0 赞 0 分享

iOS实现知乎和途家导航栏渐变的文字动画效果

这篇文章给大家分享了利用iOS实现知乎和途家导航栏渐变的文字动画效果,有需要的朋友们可以参考借鉴。下面来一起看看。
收藏 0 赞 0 分享

iOS读取txt文件出现中文乱码的解决方法

这篇文章主要为大家详细介绍了iOS读取txt文件出现中文乱码的解决方法,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享
查看更多