iOS——UITableVew 头部图片下拉放大

#import "MyViewController.h"
CGFloat const imageW=320;
CGFloat const imageH=320;
CGFloat const inseTop=150;
@interface MyViewController ()
@property (nonatomic ,strong)UIImageView *myimageView;

@end

@implementation MyViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    
   
    self.tableView.contentInset=UIEdgeInsetsMake(inseTop, 0, 0, 0);

    self.myimageView=[[UIImageView alloc]init];
    self.myimageView.image=[UIImage imageNamed:@"1436262350712853.jpg"];
    self.myimageView.frame=CGRectMake(0, -inseTop, imageW, imageH);
    
    //设置内容模式,也是核心代码
    self.myimageView.contentMode=UIViewContentModeScaleAspectFill;
    [self.tableView insertSubview:self.myimageView atIndex:0];




}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}
#pragma mark - 核心代码
-(void)scrollViewDidScroll:(UIScrollView *)scrollView
{
   
    CGFloat dragdelta=-inseTop-scrollView.contentOffset.y;
    if (dragdelta<0)
    {
        dragdelta=0;
    }
    
    CGRect new=self.myimageView.frame;
    new.size.height=inseTop+dragdelta;
    self.myimageView.frame=new;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {

    
    return 20;
}


-(UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *ID=@"id";
    
    UITableViewCell *cell=[tableView dequeueReusableCellWithIdentifier:ID];
    if (cell==nil)
    {
        cell=[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:ID];
    }
    
    NSString *title=[NSString stringWithFormat:@"哈哈:%ld",indexPath.row];
    cell.textLabel.text=title;
    return cell;
}
@end

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值