美文网首页
#iOS# Pulldown to zoom picture

#iOS# Pulldown to zoom picture

作者: puppyb2m | 来源:发表于2015-12-23 15:37 被阅读159次

UIImageView

self.imageView.contentMode = UIViewContentModeScaleAspectFill;
self.imageView.clipsToBounds = YES;

UITableView

[tableHeaderView addSubview:self.imageView];
self.tableView.tableHeaderView = tableHeaderView;

ZoomImage

- (void) scrollViewDidScroll:(UIScrollView *)scrollView
{
    CGFloat yPos = -scrollView.contentOffset.y;
    if (yPos > 0) {
        CGRect imgRect = self.imageView.frame;
        imgRect.origin.y = scrollView.contentOffset.y;
        imgRect.size.height = HeaderHeight+yPos;
        self.imageView.frame = imgRect;
    }
}

相关文章

网友评论

      本文标题:#iOS# Pulldown to zoom picture

      本文链接:https://www.haomeiwen.com/subject/rhdvhttx.html