欢迎来到代码驿站!

iOS代码

当前位置:首页 > 移动开发 > iOS代码

iOS tableView实现顶部图片拉伸效果

时间:2021-02-20 09:08:32|栏目:iOS代码|点击:

大家可能注意到一些app的tableView的顶部图片,会随着你拉伸而跟着拉伸变大,下面这是我的一些想法

原图:

效果图:

下面附上代码吧,这里的图片不是添加在tabview的header上

#define SCREEN_W [UIScreen mainScreen].bounds.size.width 
#define SCREEN_H [UIScreen mainScreen].bounds.size.height 
#define TOP 200 //顶部预留 
 
#import "ViewController.h" 
 
@interface ViewController ()<UITableViewDataSource,UITableViewDelegate> 
@property (nonatomic,strong)UITableView *tableV; 
@end 
 
@implementation ViewController 
 
- (void)viewDidLoad { 
 [super viewDidLoad]; 
 
 [self creatTableView]; 
} 
 
- (void)creatTableView 
{ 
 self.automaticallyAdjustsScrollViewInsets = NO; 
 self.tableV = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_W, SCREEN_H) style:UITableViewStylePlain]; 
 self.tableV.contentInset = UIEdgeInsetsMake(TOP, 0, 0, 0); 
  
 self.tableV.delegate = self; 
 self.tableV.dataSource = self; 
  
 //创建顶部图片 
 UIImageView * imageView = [[UIImageView alloc]initWithFrame:CGRectMake(0, -TOP, SCREEN_W, TOP)]; 
 imageView.tag = 1000; 
  
 //更改图片显示模式 根据图片原有尺寸进行显示 将多余部分切除 
 imageView.contentMode = UIViewContentModeScaleAspectFill; 
  
 //多余部分隐藏 
 imageView.clipsToBounds = YES; 
  
 imageView.image = [UIImage imageNamed:@"pic"]; 
  
 [self.view addSubview:_tableV]; 
 [self.tableV addSubview:imageView]; 
} 
 
- (void)scrollViewDidScroll:(UIScrollView *)scrollView 
{ 
 float offSet = scrollView.contentOffset.y; 
  
 if (offSet < -200) 
 { 
  UIImageView * tempImageView = (UIImageView*)[self.view viewWithTag:1000]; 
   
  CGRect f = tempImageView.frame; 
  //保持图片原点仍为屏幕左上方 
  f.origin.y = offSet; 
  //保证图片根据滑动高度拉伸 
  f.size.height = -offSet; 
  //给图片重新设置坐标 
  tempImageView.frame = f; 
 } 
} 
 
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section 
{ 
 return 10; 
} 
 
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 
{ 
 static NSString *cell = @"cell"; 
 UITableViewCell *myCell = [tableView dequeueReusableCellWithIdentifier:cell]; 
 if (!myCell) { 
  myCell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:cell]; 
 } 
 myCell.textLabel.text = @"我是 cell"; 
 return myCell; 
} 
 
@end 

上一篇:ios xcode警告与错误的分析总结

栏    目:iOS代码

下一篇:iOS通过http post上传图片

本文标题:iOS tableView实现顶部图片拉伸效果

本文地址:http://www.codeinn.net/misctech/66678.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有