gpt4 book ai didi

ios - 只检测从右到左的旋转手势

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:46:18 25 4
gpt4 key购买 nike

我能够检测到旋转手势,但我只需要检测从右到左的那个。

如果有任何帮助,我将不胜感激。

谢谢!

最佳答案

我假设您正在使用 UIRotationGestureRecognizer 来检测旋转。你应该有这样的东西:

UIRotationGestureRecognizer *gestureRecognizer = [[UIRotationGestureRecognizer alloc] initWithTarget:self action:@selector(gestureRecognizerAction:)];
[self.view addGestureRecognizer:gestureRecognizer];

和:

- (void)gestureRecognizerAction:(UIRotationGestureRecognizer *)gestureRecognizer
{
if (gestureRecognizer.rotation > 0) {
//rotation in one side - lets say from left to right
} else {
//rotation in other side - lets say from right to left
}
}

通过这种方式,您将只能检测到从右到左的旋转。

关于ios - 只检测从右到左的旋转手势,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17733389/

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