我想要self.scrollview zoomToRect:animated
这样rect
相对于UIImage
,而不是UIImageView
scrollView
我该怎么做?
答案 0 :(得分:1)
所以问题是将坐标从UIImage
转换为UIScrollView
This library帮了很多忙。
所以在我的课程中添加了一个方法
-(void)zoomToRectInImage:(CGRect)rect
{
CGRect r = [self.imageView convertRectFromImage:rect];
CGRect zoomrect = [self convertRect:r fromView:self.imageView];
[self zoomToRect:zoomrect animated:YES];
}