gpt4 book ai didi

ios - 检测所有应用程序的手势

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:06:27 24 4
gpt4 key购买 nike

我打算检测我的应用程序上的所有双指向下滑动手势。

我扩展了 Window 类,并添加了这个:

public extension UIWindow {

func initGestureTouch() {
let swipeDown = UISwipeGestureRecognizer(target: self, action: #selector(handleGesture))
swipeDown.direction = .down
swipeDown.numberOfTouchesRequired = 2
self.addGestureRecognizer(swipeDown)
}
}

它几乎无处不在,除了 ScrollViews(TableViews 等)。在此 View 中,只有 ScrollView 才能获得手势。

有没有办法做到这一点?这是一个特殊的手势,用于打开 Helper Assistant。

Ps: 到目前为止,我发现的唯一方法是在每个 ScrollView 上添加双手势检测,但这对我来说还不够。

最佳答案

试试这个:

swipeDown.cancelsTouchesInView = True
swipeDown.delaysTouchesBegan = True

第一个意味着如果被识别,触摸将不会发送到下面的 View 。第二个将在发送触摸时延迟。

关于ios - 检测所有应用程序的手势,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47212354/

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