UIScrollView 带有检测触摸的 imageview

发布于 2024-11-02 08:34:51 字数 89 浏览 1 评论 0原文

我有一个 UIScrollView 和一个图像视图。图像视图必须响应用户在图像视图上的触摸。但它必须通过滑动和捏合手势滚动和缩放图像。我怎样才能同时启用这两个功能。

I have a UIScrollView and inside that one image view. The imageview must draw on response to user touches on the image view. But it must scroll and zoom the image on swipe and pinch gesture. How can i enable both these functionalities at the same time.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夏有森光若流苏 2024-11-09 08:34:51

您必须实现 UIScrollViewDelegate

-(UIView*)viewForZoomingInScrollView:(UIScrollView*)scrollView

并在 UIImageView 上启用用户交互

imageView.userInteractionEnabled = YES;

然后要检测滑动,您可以使用 UISwipeGestureRecognizer。

You have to implement UIScrollViewDelegate

-(UIView*)viewForZoomingInScrollView:(UIScrollView*)scrollView

And enable user interaction on your UIImageView

imageView.userInteractionEnabled = YES;

Then to detect swipes you can use UISwipeGestureRecognizer.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文