2

UIViewController 内に UIScrollView があります。スクロールとズームが有効になっています。これには UIImageView が含まれており、ユーザーがデバイスを回転させると、イメージは中央に配置されたままになります。問題は、デバイスを回転させると、本来あるべき中央ではなく左側にずれて表示されることです。これが私が使用しているコードです。UIScrollView が回転すると、セット フレームが呼び出されます。

-(void)setFrame:(CGRect)frame {

    float previousWidth = self.frame.size.width;
    float newWidth = frame.size.width;

    [super setFrame:frame];
    self.imageView.center = CGPointMake(self.bounds.size.width / 2, self.bounds.size.height / 2);

    [self setupScales];

    self.zoomScale = self.zoomScale * (newWidth / previousWidth);
}
4

3 に答える 3

1

uiscrollview のサブクラスで次の layoutsubviews メソッドを使用します。

- (void)layoutSubviews {
    [super layoutSubviews];

    if ([[self subviews] count] == 0) {
        return;
    }

    // center the image as it becomes smaller than the size of the screen
    CGSize boundsSize = self.bounds.size;
    CGRect frameToCenter = ((UIView*)[[self subviews] objectAtIndex:0]).frame;

    // center horizontally
    if (frameToCenter.size.width < boundsSize.width)
        frameToCenter.origin.x = (boundsSize.width - frameToCenter.size.width) / 2;
    else
        frameToCenter.origin.x = 0;

    // center vertically
    if (frameToCenter.size.height < boundsSize.height)
        frameToCenter.origin.y = ((boundsSize.height - frameToCenter.size.height) / 2);
    else
        frameToCenter.origin.y = 0;

    ((UIView*)[[self subviews] objectAtIndex:0]).frame = frameToCenter;
}
于 2012-05-08T18:52:35.297 に答える
0

向きの変更でスクロールビューのサイズが変更される場合は、これを試してください

self.imageView.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin | UIViewAutoresizingFlexibleBottomMargin | UIViewAutoresizingFlexibleTopMargin;
于 2012-05-08T18:45:52.763 に答える
0

おそらくcontentOffsetスクロールビューのプロパティも設定する必要があります

于 2012-05-08T18:30:15.217 に答える