Scrollview中的ImageView显示为颠倒

时间:2011-11-01 17:46:40

标签: ios imageview scrollview

我通过在UIScrollView中放置UIImageView创建了一个滚动/缩放图像视图。行为完全按照我的意愿和期望,但是图像在滚动视图中颠倒出现。

以下是我处理初始化,缩放和滚动的方法:

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view from its nib.
    scrollView.contentSize = imageView.frame.size;
    [scrollView addSubview:imageView];
    scrollView.minimumZoomScale = 0.1f;
    scrollView.maximumZoomScale = 0.5f;
    scrollView.delegate = self;
    [scrollView setZoomScale:scrollView.minimumZoomScale];

}

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

以下是模拟器中的截图。

enter image description here

在界面构建器中创建并设置了imageview / scrollview。

有什么想法吗?谢谢!

1 个答案:

答案 0 :(得分:0)

您是否能够确认imageView本身是颠倒的,而不仅仅是图像?

如果不是这种情况,你可以用[imageView setFrame:someFrame]

之类强制它

希望有所帮助