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

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

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

2019-10-21 18:41:12
字體:
供稿:網(wǎng)友

本文實(shí)例為大家分享了iOS tableview頭部拉伸效果展示的具體代碼,例如探探個(gè)人信息界面拉伸效果,下拉頭像放大

iOS,tableview,頂部拉伸,iOS頂部拉伸,iOS拉伸效果

代碼:

//// PersonController.m// Spread//// Created by qiuxuewei on 16/3/21.// Copyright © 2016年 邱學(xué)偉. All rights reserved.//#import "PersonController.h"@interface PersonController ()<UITableViewDataSource, UITableViewDelegate, UIScrollViewDelegate>{}//屬性列表/** 頂部圖片視圖 */@property (nonatomic, strong) UIImageView *headerImageView;@property (nonatomic, strong) UIView *headerBackView;/** 個(gè)人信息界面 */@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 - 類內(nèi)方法//添加子視圖-(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{ // 不加此句時(shí),在二級(jí)欄目點(diǎn)擊返回時(shí),此行會(huì)由選中狀態(tài)慢慢變成非選中狀態(tài)。 // 加上此句,返回時(shí)直接就是非選中狀態(tài)。 [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數(shù)據(jù)! [cell.textLabel setText:@"阿偉"]; [cell.detailTextLabel setText:@"2016-03-22"]; return cell;}//滾動(dòng)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

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


注:相關(guān)教程知識(shí)閱讀請(qǐng)移步到IOS開發(fā)頻道。
發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 伊吾县| 平昌县| 清丰县| 新泰市| 滨海县| 土默特右旗| 文安县| 枣阳市| 郯城县| 通榆县| 靖远县| 吉木萨尔县| 山东省| 高邮市| 灵寿县| 黄大仙区| 汉寿县| 巫溪县| 黔东| 南平市| 湟源县| 三穗县| 英山县| 安阳县| 桓仁| 离岛区| 洞头县| 三河市| 桐梓县| 玛多县| 云南省| 延寿县| 南丹县| 安阳县| 富川| 蚌埠市| 弋阳县| 麻江县| 田阳县| 浠水县| 车致|