0

我想执行self.scrollview zoomToRect:animated 这样的rect操作是相对于UIImage而不是UIImageView嵌入在里面scrollView

我怎样才能做到这一点?

4

1 回答 1

1

所以问题是将坐标UIImageUIScrollView

这个库帮助很大。

所以在我的课堂上添加了一个方法

-(void)zoomToRectInImage:(CGRect)rect
{
    CGRect r        = [self.imageView convertRectFromImage:rect];
    CGRect zoomrect = [self convertRect:r fromView:self.imageView];
    [self zoomToRect:zoomrect animated:YES];
}
于 2013-08-29T10:44:48.497 回答