0
- (void)centerScrollViewContents {
    CGSize boundsSize = self.scrollView.bounds.size;
    CGRect contentsFrame = self.imageView.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.imageView.frame = contentsFrame;
}

我调用了中的conterScrollViewContents方法viewWillAppear,但是imageView不会定位到scrollView的中心。

有什么问题?

4

1 回答 1

0

你的代码对我来说似乎是正确的。您是否尝试调试这些值?或者您可能没有在 Interface Builder 中链接 imageView 变量?

于 2012-07-08T02:39:23.360 回答