码迷,mamicode.com
首页 > 移动开发 > 详细

iOS下拉放大的效果

时间:2015-10-03 18:02:34      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:

一,code

// 创建UIImageView

    UIImageView* topView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"IMG_1483"]];

    topView.frame = CGRectMake(0, -HGTopViewH, self.tableView.frame.size.width, HGTopViewH);

    // 设置模式,自动伸缩,全拼显示

    topView.contentMode = UIViewContentModeScaleAspectFill;

    // 支持旋转

    topView.autoresizingMask = UIViewAutoresizingFlexibleWidth;

    // 将UIImageView加到TableView中

    [self.tableView insertSubview:topView atIndex:0];

    // 内嵌

    self.tableView.contentInset = UIEdgeInsetsMake(HGTopViewH*0.5, 0, 0, 0);

    self.topView = topView;

 

技术分享

 

二,code

- (void)scrollViewDidScroll:(UIScrollView *)scrollView {

    // 向下移动的距离

    CGFloat down = -(HGTopViewH*0.5)-scrollView.contentOffset.y;

    

    if (down<0) {

        

        return;

    }

    // 从新设置frame

    CGRect frame = self.topView.frame;

    frame.size.height = HGTopViewH + down*2;

    self.topView.frame = frame;

}

 

技术分享

iOS下拉放大的效果

标签:

原文地址:http://www.cnblogs.com/iOS771722918/p/4853570.html

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