91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

iOS中如何實現頭部拉伸效果

發布時間:2021-05-24 11:55:45 來源:億速云 閱讀:263 作者:小新 欄目:移動開發

這篇文章主要介紹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中如何實現頭部拉伸效果”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

江永县| 紫云| 屏南县| 凤庆县| 木里| 霸州市| 西藏| 天峨县| 肥城市| 金坛市| 唐河县| 天祝| 临沂市| 赤城县| 星座| 桦南县| 东山县| 南江县| 洱源县| 漠河县| 团风县| 万源市| 手机| 呼玛县| 连城县| 廊坊市| 阿拉善左旗| 昆山市| 饶阳县| 汉中市| 肥东县| 邹城市| 济宁市| 阿拉善左旗| 万荣县| 新宾| 郴州市| 宜川县| 仪征市| 壤塘县| 和政县|