gpt4 book ai didi

ios - 处理包含 UIButton 的 UIView 的触摸事件

转载 作者:行者123 更新时间:2023-11-30 12:26:44 28 4
gpt4 key购买 nike

我无法从带有 UIButton subview 的 UIView 捕获触摸事件。 UIButton 可能会阻止 touchesBegantouchesEnd 事件到达外部 View 。

我该如何处理这些事件?我尝试将 UserInteractionEnabled 设置为 false。触摸事件到达外部 View ,但使用此解决方案,UIButton 不会转换为突出显示状态。

有没有办法在不失去按钮自然行为的情况下完成此任务?

(P.S.我不想使用GestureRecognizers等,因为我需要获取事件的实际时间戳)

最佳答案

如果我理解了你的问题,你可以尝试这种方法:

-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
[super touchesBegan:touches withEvent:event];

UITouch *touch = [touches anyObject];

if (CGRectContainsPoint(yourbutton.frame, [touch locationInView:self])) { //if touch is beginning on Button

}
}

关于ios - 处理包含 UIButton 的 UIView 的触摸事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44105217/

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