如何测试一个 UIView 是否被另一个 UIView 触摸?

发布于 2024-12-02 12:55:29 字数 100 浏览 1 评论 0原文

我有一个自定义的 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 技术交流群。

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

发布评论

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

评论(1

寄与心 2024-12-09 12:55:30

您可以检查两个视图框架的交集是否为空。使用 UIView 类上的 frame 方法获取每个视图的 CGRect 框架,然后调用 CGRectIntersection 查找矩形的重叠区域(如果有)。如果它们不接触,交集将是空矩形(即 CGRectIsNull 将返回 true)。

代码,未经测试:

// Given UIView * letter, * holder:
CGRect letterFrame = [letter frame];
CGRect holderFrame = [holder frame];
CGRect intersection = CGRectIntersection(letterFrame, holderFrame);
if(CGRectIsNull(intersection)) {
    // Not touching yet - null intersection
} else {
    // Touching! Do something here
}

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 call CGRectIntersection 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 for CGRectIsNull).

Code, untested:

// Given UIView * letter, * holder:
CGRect letterFrame = [letter frame];
CGRect holderFrame = [holder frame];
CGRect intersection = CGRectIntersection(letterFrame, holderFrame);
if(CGRectIsNull(intersection)) {
    // Not touching yet - null intersection
} else {
    // Touching! Do something here
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文