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
이상 은 시스템 원생 의 네 비게 이 션 바 를 투명 하 게 설정 한 것 입 니 다.사용자 정의 보 기 를 탐색 표시 줄 로 설정 할 수도 있 습 니 다.
효 과 는 다음 과 같 습 니 다:
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
View의 레이아웃 방법을 AutoLayout에서 따뜻한 손 계산으로 하면 성능이 9.26배로 된 이야기이 기사는 의 15 일째 기사입니다. 어제는 에서 이었습니다. 손 계산을 권하는 의도는 없고, 특수한 상황하에서 계측한 내용입니다 화면 높이의 10 배 정도의 contentView가있는 UIScrollView 레이아...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.