gpt4 book ai didi

ios - UIGestureRecognizerStateEnded 的 Swift 等价物是什么?

转载 作者:搜寻专家 更新时间:2023-11-01 05:51:32 26 4
gpt4 key购买 nike

我正在尝试检测平移手势何时结束。在 Objective-C 下,我会做类似下面的事情:

- (void)panGesture:(UIPanGestureRecognizer *)gesture {
if (gesture.state == UIGestureRecognizerStateEnded) {
...
}
}

在我的 Swift 项目中,它无法识别 UIGestureRecognizerStateEnded...也许我只需要导入一些不同的东西(?)

最佳答案

等价于

gesture.state == .Ended

或者如果你喜欢

gesture.state == UIGestureRecognizerState.Ended

关于ios - UIGestureRecognizerStateEnded 的 Swift 等价物是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25827330/

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