当我通过滚动弹起时,我想更改 Image 的边界大小和表格边界的大小。
我该怎么做?
我做了两张图片。
我要这样。
它在下面滚动。
您可以通过以下方法更改 ImageView 边界:
- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
imgView.frame = CGRectMake(imgView.frame.origin.x, imgView.frame.origin.y, imgView.frame.size.width, height+scrollView.contentOffset.y); // height is static which is the default height of imgView object.
imgView.contentMode = UIViewContentModeScaleAspectFit;//This is to scale your image.
}
在这里,检查一下, NTParallaxView - 它可以帮助您以更简单的方式创建具有视差效果的 tableview(scrollview),就像 Path 时间轴的顶视图。