如何在ScrollView(缩放)中居中UIImageView

时间:2012-11-01 19:20:36

标签: objective-c uiscrollview uiimageview zooming

我正在尝试在UIScrollView中缩放UIImageView。而且我有这个:

-(UIView *)viewForZoomingInScrollView:(UIScrollView *)scrollView {
return imageView;
}

-(void)scrollViewDidZoom:(UIScrollView *)scrollView {
[imageView setCenter:CGPointMake(scrollView.center.x, scrollView.center.y)];
}

-(void)scrollViewDidEndZooming:(UIScrollView *)scrollView withView:(UIView *)view atScale:(float)scale {
}

问题是:当我缩小图像时它居中,但当我放大时,图像会移到左上角。

我的代码出现问题在哪里?

1 个答案:

答案 0 :(得分:3)

答案是从scrollViewDidZoom:删除全部并添加:

[self centerScrollViewContent];

方法实施:

- (void)centerScrollViewContents {
CGSize boundsSize = self.scrollView.bounds.size;
CGRect contentsFrame = self.containerView.frame;

if (contentsFrame.size.width < boundsSize.width) {
    contentsFrame.origin.x = (boundsSize.width - contentsFrame.size.width) / 2.0f;
} else {
    contentsFrame.origin.x = 0.0f;
}

if (contentsFrame.size.height < boundsSize.height) {
    contentsFrame.origin.y = (boundsSize.height - contentsFrame.size.height) / 2.0f;
} else {
    contentsFrame.origin.y = 0.0f;
}

self.containerView.frame = contentsFrame;
}