gpt4 book ai didi

ios - 如何在 UIScrollView 的 super View 中检测 "Touch Down"?

转载 作者:可可西里 更新时间:2023-11-01 03:34:47 25 4
gpt4 key购买 nike

我有一个包含 UIScrollViewUIView,我希望能够在 UIView 中捕获任何“Touch Down”事件用户点击 UIScrollView 的时间。

我已经尝试在我的 UIViewController 中包含所有的 touchesBegan/Ended/Cancelled 处理程序,但是当在主 中包含的 UIScrollView 中点击时,它们都没有被触发>UIView.

实现此目标的最佳方法是什么?

最佳答案

在 UIView 中,实现 touchesBegan:

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
// assign a UITouch object to the current touch
UITouch *touch = [[event allTouches] anyObject];

// if the view in which the touch is found is myScrollView
// (assuming myScrollView is the UIScrollView and is a subview of the UIView)
if ([touch view] == myScrollView) {
// do stuff here
}
}

旁注:确保 UIView 中的 userInteractionEnabled 设置为 YES。

关于ios - 如何在 UIScrollView 的 super View 中检测 "Touch Down"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2596163/

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