国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統(tǒng) > iOS > 正文

iOS實(shí)現(xiàn)頭部拉伸效果

2020-07-26 02:28:06
字體:
供稿:網(wǎng)友

本文實(shí)例為大家分享了iOS實(shí)現(xiàn)頭部拉伸效果展示的具體代碼,供大家參考,具體內(nèi)容如下

主要涉及到導(dǎo)航欄透明度、圖片拉伸、列表頭部等。

  • 導(dǎo)航欄透明度的實(shí)現(xiàn)。
  • 列表拖動(dòng)距離的監(jiān)聽,及圖片放大的實(shí)現(xiàn)。

導(dǎo)航透明度的設(shè)置

添加系統(tǒng)導(dǎo)航欄的Category實(shí)現(xiàn)

聲明部分:

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

實(shí)現(xiàn)部分:

#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

監(jiān)聽列表拖動(dòng)及實(shí)現(xiàn)圖片放大

主要是監(jiān)聽滾動(dòng)的距離(scrollViewDidScroll:方法)

#import "StretchViewController.h"#import "UINavigationBar+BackgroundColor.h"http:// 背景圖片的寬高比例#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];  // 設(shè)置導(dǎo)航欄底部分割線為透明  [self.navigationController.navigationBar setShadowImage:[UIImage new]];}- (void)viewDidLoad {  [super viewDidLoad];  // 設(shè)置全透明  [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 = @"測(cè)試數(shù)據(jù)";  return cell;}- (NSInteger)tableView:(nonnull UITableView *)tableView numberOfRowsInSection:(NSInteger)section {  return 10;}- (void)scrollViewDidScroll:(UIScrollView *)scrollView{  CGFloat yOffset = scrollView.contentOffset.y; // 向上滑動(dòng),offset是增加的;向下滑動(dòng),是減少的  if (yOffset < 160) { // 當(dāng)滑動(dòng)到導(dǎo)航欄底部時(shí)    CGFloat colorAlpha = yOffset/160;//    self.navigationController.navigationBar.backgroundColor = [[UIColor whiteColor] colorWithAlphaComponent:colorAlpha];    [self.navigationController.navigationBar lt_setBackgroundColor:[[UIColor whiteColor] colorWithAlphaComponent:colorAlpha]];  } else { // 超過導(dǎo)航欄底部了    [self.navigationController.navigationBar lt_setBackgroundColor:[UIColor whiteColor]];  }  // 往上滑動(dòng)效果、處理放大效果  if (yOffset > 0) {    self.bgView.frame = ({      CGRect frame = self.bgView.frame;      frame.origin.y = self.originalFrame.origin.y - yOffset;      frame;    });  } else { // 往下移動(dòng),放大效果    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

以上是對(duì)系統(tǒng)原生的導(dǎo)航欄進(jìn)行透明度設(shè)置。

也可進(jìn)行自定義視圖設(shè)置為導(dǎo)航欄

效果如下:

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持武林網(wǎng)。

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 晋江市| 莱州市| 荣昌县| 五河县| 神木县| 长海县| 安吉县| 淳安县| 扬州市| 文水县| 华亭县| 江陵县| 晋州市| 蒲江县| 霍州市| 浮梁县| 尉犁县| 邹城市| 会泽县| 斗六市| 延吉市| 庐江县| 衢州市| 克山县| 佛学| 台南县| 阆中市| 商城县| 崇明县| 游戏| 安福县| 文化| 淮滨县| 锦屏县| 五指山市| 溧阳市| 正蓝旗| 临汾市| 米林县| 田东县| 遵义市|