iOS tableview 상단 스 트 레 칭 효과 구현
코드:
//
// PersonController.m
// Spread
//
// Created by qiuxuewei on 16/3/21.
// Copyright © 2016 . All rights reserved.
//
#import "PersonController.h"
@interface PersonController ()<UITableViewDataSource, UITableViewDelegate, UIScrollViewDelegate>{
}
//
/** */
@property (nonatomic, strong) UIImageView *headerImageView;
@property (nonatomic, strong) UIView *headerBackView;
/** */
@property (nonatomic, strong) UITableView *tableView;
@end
@implementation PersonController
#pragma mark -
-(UIView *)headerBackView{
if (_headerBackView == nil) {
_headerBackView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, kScreenWidth, 200)];
[_headerBackView setBackgroundColor:[UIColor lightGrayColor]];
}
return _headerBackView;
}
-(UIImageView *)headerImageView{
if (_headerImageView == nil) {
_headerImageView = [[UIImageView alloc] init];
[_headerImageView setImage:[UIImage imageNamed:@" _ .JPG"]];
[_headerImageView setBackgroundColor:[UIColor greenColor]];
[_headerImageView setContentMode:UIViewContentModeScaleAspectFill];
[_headerImageView setClipsToBounds:YES];
}
return _headerImageView;
}
-(UITableView *)tableView{
if (_tableView == nil) {
_tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, kScreenWidth, kScreenHeight) style:UITableViewStyleGrouped];
[_tableView setDataSource:self];
[_tableView setDelegate:self];
}
return _tableView;
}
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view from its nib.
//
[self addChildViews];
}
#pragma mark -
//
-(void)addChildViews{
//
[self.view addSubview:self.tableView];
//
[self addHeaderImageView];
}
//
-(void)addHeaderImageView{
[self.tableView setTableHeaderView:self.headerBackView];
[self.headerImageView setFrame:self.headerBackView.bounds];
[self.headerBackView addSubview:self.headerImageView];
}
#pragma mark - UITableViewDataSource
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
return 4;
}
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
return 2;
}
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
return 64;
}
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
// , , 。
// , 。
[tableView deselectRowAtIndexPath:indexPath animated:YES];
}
// cell
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
static NSString *ID = @"cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];
if (!cell) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:ID];
}
// cell !
[cell.textLabel setText:@" "];
[cell.detailTextLabel setText:@"2016-03-22"];
return cell;
}
// tableview
-(void)scrollViewDidScroll:(UIScrollView *)scrollView{
//
CGFloat imageHeight = self.headerBackView.frame.size.height;
//
CGFloat imageWidth = kScreenWidth;
//
CGFloat imageOffsetY = scrollView.contentOffset.y;
NSLog(@" imageOffsetY:%f ->",imageOffsetY);
//
if (imageOffsetY < 0) {
CGFloat totalOffset = imageHeight + ABS(imageOffsetY);
CGFloat f = totalOffset / imageHeight;
self.headerImageView.frame = CGRectMake(-(imageWidth * f - imageWidth) * 0.5, imageOffsetY, imageWidth * f, totalOffset);
}
// //
// if (imageOffsetY > 0) {
// CGFloat totalOffset = imageHeight - ABS(imageOffsetY);
// CGFloat f = totalOffset / imageHeight;
//
// [self.headerImageView setFrame:CGRectMake(-(imageWidth * f - imageWidth) * 0.5, imageOffsetY, imageWidth * f, totalOffset)];
// }
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
/*
#pragma mark - Navigation
// In a storyboard-based application, you will often want to do a little preparation before navigation
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
// Get the new view controller using [segue destinationViewController].
// Pass the selected object to the new view controller.
}
*/
@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에 따라 라이센스가 부여됩니다.