0

我正在制作一个允许缩放和平移的简单照片查看器。

所以在 IB 中我创建了一个包含 UIImageView 的 UIScrollView:

在此处输入图像描述

然后我可以将其配置为在照片可用时立即容纳照片:

- (void) imageCaptureCompleted 
{
    {
        UIImage* I = self.frontCamView.stillImage;

        self.imageView.bounds = CGRectMake(0, 0, I.size.width, I.size.height );
        self.imageView.image = I;

        // - - - 

        self.scrollView.maximumZoomScale = 4.0;
        self.scrollView.minimumZoomScale = 0.75;
        self.scrollView.clipsToBounds = YES;
        self.scrollView.delegate = self;

        self.scrollView.contentSize = self.imageView.bounds.size;
    }

    [self hideCaptureView];

    UIImageWriteToSavedPhotosAlbum( self.frontCamView.stillImage, 
                                   self, 
                                   @selector( image: didFinishSavingWithError: contextInfo: ), 
                                   nil );
}

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

这几乎可以工作了。它确实让我平移和缩放。

然而,它太过分了!当它碰到照片的右边缘时,它应该会反弹回来。但它的行为就像照片在一个更大的黑色矩形中一样。

我已经以与上图完全相同的方式设置了滚动视图的自动调整大小掩码。

如何让它工作?

PS我现在已经想通了;我会为后人提供答案。

4

1 回答 1

0

这段代码对其进行了整理:

        // self.imageView.bounds = CGRectMake(0, 0, I.size.width, I.size.height );
        self.imageView.image = I;

        [self.imageView sizeToFit];

但是,我不明白为什么这个改变是必要的。如果有人能告诉我,我会接受这个答案(在这种情况下,请粘贴上面的代码,然后我可以删除这个答案)。

于 2011-11-18T13:19:38.940 回答