区分两个 ImageView
我有两个图像视图 imageView1 和 imageView2。我已经给了gestureRecognizer来移动这两个图像。现在的问题是,当我将第一个 imageView 移动到第二个 imageView 附近时,仅显示第二个图像视图。但是当我将第一个 imageView 放在另一个图像上时,第一个 imageView 应该显示在第二个 imageView 上,但没有发生。任何人都可以告诉我第一个 imageView 如何在另一个 imageView 的顶部获得视图。
I have two imageViews imageView1 and imageView2. I have given gestureRecognizer to move these both images. Now the problem is when i move first imageView near second imageView only second image view is displayed. But when i put first imageView on another image the first imageView should be displayed on the second imageView which is not happening.Can any body please tell me how can the first imageView gets view on the top of another imageView.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
UIView
方法bringSubviewToFront:
,并传入您想要显示在顶部的UIImageView
。You can use the
UIView
methodbringSubviewToFront:
, and pass in theUIImageView
that you want displayed on top.你为什么不使用类似的东西来拖动你的 UIImageViews 呢?
//---编辑---//
添加:viewdidload 中的cliptobounds
Why dont you use something similar like this to drag your UIImageViews?
//---EDIT---//
Added: cliptobounds in viewdidload