gpt4 book ai didi

ios - 重叠的 UIView 上的 UITouch

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:16:17 26 4
gpt4 key购买 nike

我有两个 View ,每个 View 包含两个 subview 。

只要两个顶 View 不重叠,命中检测就可以正常工作。因此,我可以触摸下图左侧标记为 A 的 subview 。

但是,一旦顶部的两个 View 重叠,A View 就无法接收触摸,因为 View ​​1“高于” View 2 并“吃掉”触摸。

View 1 和 View 2 都可以检测触摸,因为它们可以四处移动,因此需要检测 subview “之间”的触摸并对其使用react。

这意味着我的两个“顶部 View ”检测应该说:“哦,等一下,也许我正在重叠其他 View 并且应该将事件传递给它,并且只有当且仅当没有其他 View 是“低于我”的。

我该怎么做? enter image description here

编辑:谢谢 jaydee3

一开始这不起作用,导致无限递归:每个 View 都推迟到其兄弟 View ,而兄弟 View 又推迟回初始 View :

- (UIView *) hitTest:(CGPoint)point withEvent:(UIEvent *)event {
UIView * hit = [super hitTest:point withEvent:event] ;

if (hit == self) {
for (UIView * sibling in self.superview.subviews) {
if (sibling != self) {
CGPoint translated = [self convertPoint:point toView:sibling] ;
UIView * other = [sibling hitTest:translated withEvent:event] ;
if (other) {
return other ;
}
}
}
}

return hit ;
}

所以,我添加了一个“标记集”来跟踪已经访问过的 View ,现在一切正常了:)

- (UIView *) hitTest: (CGPoint) point withEvent: (UIEvent *) event {

static NSMutableSet * markedViews = [NSMutableSet setWithCapacity:4] ;

UIView * hit = [super hitTest:point withEvent:event] ;

if (hit == nil) return nil ;

if (hit == self) {
for (UIView * sibling in hit.superview.subviews) {
if (sibling != hit) {
if ([markedViews containsObject:sibling]) {
continue ;
}

[markedViews addObject:sibling] ;
CGPoint translated = [hit convertPoint:point toView:sibling] ;
UIView * other = [sibling hitTest:translated withEvent:event] ;
[markedViews removeObject:sibling] ;

if (other) {
return other ;
}
}
}
}

return hit ;
}

最佳答案

为您的 View 创建一个自定义子类(包含其他两个 subview )并为它覆盖 hitTest: 方法。在该方法中,检查 hitTest View 是否是两个 subview 之一,否则返回 nil。因此,在您的周围 View 中,所有触摸都将被忽略。导致触摸下面的 View ,它可以自行处理。

//编辑:(您通过调用 UIView* view = [super hitTest:withEvent:]; 获得 hitTest View 。)

//edit2:我想的更多::)

- (UIView *) hitTest:(CGPoint)point withEvent:(UIEvent *)event {
UIView * hit = [super hitTest:point withEvent:event] ;

if (hit == self) {
return nil;
}

return hit ;
}

;)

关于ios - 重叠的 UIView 上的 UITouch,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9871372/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com