0

UIScrollView最初は 0.28 scale(現在のスケール)に設定する必要があります。どうすれば正しくできますか?

今スケーリングに私はこのメソッドを使用しています:

#pragma mark - UIScrollViewDelegate Methods

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

-(void)scrollViewDidZoom:(UIScrollView *)scrollView {
[self centerScrollViewContent];
}

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

}

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

imageView.frame = contentsFrame;
}
4

1 に答える 1

1

scrollView コンテンツが読み込まれた後、次の方法でズーム スケールを設定できます。

self.scrollView.zoomScale = 0.28;
于 2012-12-08T18:53:03.237 に答える