查找矩形内的子视图

发布于 2024-12-08 13:38:11 字数 196 浏览 0 评论 0原文

我有一个大的 UIView 和许多小的子视图。我需要找到一个区域内的所有子视图。我目前正在迭代 subviews 并使用 CGRectContainsPoint。这可行,但 90% 的子视图通常不在我感兴趣的矩形内。

有没有更有效的方法来查找矩形内的所有子视图?

谢谢

I have a large UIView with many small subviews. I need to find all subviews within an area. I am currently iterating through subviews and using CGRectContainsPoint. This works, but 90% of the subviews are usually not within my rectangle of interest.

Is there a more efficient way to find all subviews within a rectangle?

Thanks

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

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

发布评论

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

评论(2

会发光的星星闪亮亮i 2024-12-15 13:38:11

CGRectContainsRect 会更合适。您仍然需要根据您可以假设的位置来循环遍历可能位于您的矩形中的所有子视图,但是CGRectContainsRect仍然比CGRectContainsPoint更有意义。

CGRect area = CGRectMake(10,10,200,200);
NSMutableArray *viewsWithinArea = [[NSMutableArray alloc] init];
for (UIView *aView in [self.view subviews]) {
   if(CGRectContainsRect(area,aView.frame)) [views addObject:aView];
}

CGRectContainsRect would be more appropriate. You'd still need to loop through all subviews that might be in your rect based on what you can assume about their positions, but CGRectContainsRect still makes more sense than CGRectContainsPoint.

CGRect area = CGRectMake(10,10,200,200);
NSMutableArray *viewsWithinArea = [[NSMutableArray alloc] init];
for (UIView *aView in [self.view subviews]) {
   if(CGRectContainsRect(area,aView.frame)) [views addObject:aView];
}
⒈起吃苦の倖褔 2024-12-15 13:38:11

@james_womackSwift 中的回答:

func subviewsWithin(area: CGRect) -> [UIView] {
    return subviews.filter { area.contains($0.frame) }
}

@james_womack's answer in Swift:

func subviewsWithin(area: CGRect) -> [UIView] {
    return subviews.filter { area.contains($0.frame) }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文