如何测试一个 UIView 是否被另一个 UIView 触摸?
我有一个自定义的 UIView,支架。
我有另一个来自不同类的自定义 UIView,该实例名为 letter。
当信件接触持有人时,我希望持有人做出回应。
I have a custom UIView, holder.
I have another custom UIView from a different class, and the instance is named letter.
When letter touches holder, i want holder to respond.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以检查两个视图框架的交集是否为空。使用 UIView 类上的
frame
方法获取每个视图的 CGRect 框架,然后调用CGRectIntersection
查找矩形的重叠区域(如果有)。如果它们不接触,交集将是空矩形(即CGRectIsNull
将返回 true)。代码,未经测试:
You can check that the intersection of the two views' frames is null. Use the
frame
method on the UIView class to get the CGRect frame of each view, then callCGRectIntersection
to find the rectangles' overlapping area, if any. If they don't touch, the intersection will be the null rectangle (i.e. will return true forCGRectIsNull
).Code, untested: