如何将UIImageView拖到UIScrollView下面?

发布于 2024-11-02 05:08:21 字数 579 浏览 0 评论 0原文

我有一个 UIImageView (imageView) 是 UIScrollView (scrollView) 的子视图。设置scrollView仅用于从imageView中捏合显示的图像。我有一个小的 UIImageView (iconView),它是 imageView 的子视图。所以关系是这样的:

UIView
 |_____ UIScrollView ( 滚动视图 )
            |_____ UIImageView (imageView)
                        |______ UIImageView(iconView) 。

我需要触摸并移动 iconView,但我对我发现的这两种方法感到困惑。

  1. 我可以简单地使用“hitTest:withEvent:”方法来解决这个问题以及如何使用 hitTest 吗?
  2. 或者我应该覆盖 "UITouchesBegan:withEvent:" "UITouchesMoved:withEvent:" "UITouchesEnd:withEvent:" 吗?以及如何使用它?

I have a UIImageView (imageView) being the subView of the UIScrollView (scrollView). The scrollView is set only for pinching the showed image from imageView. And I have a small UIImageView (iconView) which is the subView of imageView. So the relationship is like:

UIView
 |_____ UIScrollView ( scrollView )
            |_____ UIImageView (imageView)
                        |______ UIImageView(iconView) .

I need to touch and move the iconView but I am confused with this two methods I found.

  1. Can I simply use the "hitTest:withEvent:" method to work this out and how to use hitTest ?
  2. Or Should I override "UITouchesBegan:withEvent:" "UITouchesMoved:withEvent:" "UITouchesEnd:withEvent:" ? and how to use it?

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

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

发布评论

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

评论(1

迷你仙 2024-11-09 05:08:21

你应该使用第二种方法。

对 UIView 类进行子类化并创建 CustomView。将 iconView 定义为 CustomView。

在 CustomView 中定义 3 个代表所需的行为:

UITouchesBegan:withEvent:
UITouchesMoved:withEvent:
UITouchesEnd:withEvent:

希望这有帮助

You should use the 2nd method.

Subclass the UIView class and create CustomView. Define iconView as CustomView.

In CustomView define the 3 delegates to the desired behaviour:

UITouchesBegan:withEvent:
UITouchesMoved:withEvent:
UITouchesEnd:withEvent:

Hope this helps

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