码迷,mamicode.com
首页 > 其他好文 > 详细

表格的下拉放大 ----------王朋

时间:2015-06-05 15:32:12      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:

 

表格下拉放大的效果是:技术分享

技术分享

创建TableView和ImageView,分别设置相关属性:

_tableView=[[UITableView alloc] initWithFrame:self.view.frame style:UITableViewStylePlain];
    _tableView.delegate=self;
    _tableView.dataSource=self;
    [_tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:@"Cell"];
    //设置TableView的contentInset属性
     _tableView.contentInset=UIEdgeInsetsMake(imageHeight, 0, 0, 0);
    [self.view addSubview:_tableView];
    _imageView=[[UIImageView alloc] initWithFrame:CGRectMake(0, -imageHeight, self.view.frame.size.width,imageHeight )];
    _imageView.image=[UIImage imageNamed:@"icon.jpg"];
    //关键代码:UIViewContentModeScaleAspectFill,  contents scaled to fill with fixed aspect. some portion of content may be clipped.
    _imageView.contentMode=UIViewContentModeScaleAspectFill;
    
    [_tableView insertSubview:_imageView atIndex:0];

然后再在代理方法中改变图片的Frame

- (void)scrollViewDidScroll:(UIScrollView *)scrollView
{
    CGFloat h=scrollView.contentOffset.y;
    if (-h > imageHeight) {
        CGRect frame=_imageView.frame;
        frame.size.height=-h;
        frame.origin.y=h;
        _imageView.frame=frame;
    }
    
    NSLog(@"偏移量是%f",h);
}

 

表格的下拉放大 ----------王朋

标签:

原文地址:http://www.cnblogs.com/sixindev/p/4554544.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!