iOS,머리 스 트 레 칭 효과 구현

6240 단어 iOS늘어나다
본 논문 의 사례 는 iOS 가 머리 스 트 레 칭 효 과 를 실현 하 는 구체 적 인 코드 를 공유 하여 여러분 께 참고 하 시기 바 랍 니 다.구체 적 인 내용 은 다음 과 같 습 니 다.
주로 네 비게 이 션 표시 줄 투명도,그림 스 트 레 칭,목록 머리 등 과 관련된다.
4.567917.네 비게 이 션 바 투명도 의 실현4.567917.리스트 드래그 거리의 감청 과 사진 확대 의 실현.
내 비게 이 션 투명도 설정
시스템 탐색 표시 줄 의 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
감청 목록 드래그 및 이미지 확대 실현
주로 스크롤 거 리 를 감청 합 니 다(scrollViewDid Scroll:방법)

#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
이상 은 시스템 원생 의 네 비게 이 션 바 를 투명 하 게 설정 한 것 입 니 다.
사용자 정의 보 기 를 탐색 표시 줄 로 설정 할 수도 있 습 니 다.
효 과 는 다음 과 같 습 니 다:

이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기