缩放触摸处的图像
我想缩放用户触摸的图像区域(周围 50x50 区域)。
请注意,我不想缩放完整图像。
有什么办法可以做到这一点吗?
I want to zoom that area (50x50 area around it) of image where user touched.
Please note that i do not want to zoom full image.
Is there any way to do this ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将图像放置在 UISCrollView 内并捕获事件内的触摸。然后,您可以获取触摸的坐标,并使您的 UIScrollView 缩放该区域。
编辑:正如我在评论中所说,请参阅 文档,尤其是方法
- (void)zoomToRect:(CGRect)rectAnimated:(BOOL)animated
You can place your image inside a UISCrollView and catch touch up inside event. Then, you can get the coordinates of the touch, and make your UIScrollView zoom on this area.
Edit : As I said in comment, see the documentation and especially the method
- (void)zoomToRect:(CGRect)rect animated:(BOOL)animated