1. ホーム
  2. ios

[解決済み] UIPanGestureRecognizer - 縦のみ、横のみ

2022-04-27 18:13:25

質問

ビューに UIPanGestureRecognizer を使用して、ビューを垂直にドラッグします。そのため、recognizerコールバックでは、y座標のみを更新して移動させています。このビューのスーパービューには UIPanGestureRecognizer を使用すると、x 座標を更新するだけで、ビューを水平方向にドラッグできます。

問題は、最初の UIPanGestureRecognizer はビューを縦に移動するイベントを取っているので、スーパービュージェスチャーを使うことができません。

私が試したのは

- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer
 shouldRecognizeSimultaneouslyWithGestureRecognizer:
                            (UIGestureRecognizer *)otherGestureRecognizer;

で、どちらも動作しますが、私はそれを望んでいません。明らかに水平方向の動きである場合にのみ、水平を検出させたいのです。だから、もし UIPanGestureRecognizer には、direction プロパティがあります。

この動作を実現するにはどうすればよいのでしょうか?私はドキュメントが非常にわかりにくいと思うので、多分誰かがここでもっとうまく説明することができます。

どのように解決するのですか?

UIPanGestureRecognizer のサブクラスを作成することで解決しました。

DirectionPanGestureRecognizerです。

#import <Foundation/Foundation.h>
#import <UIKit/UIGestureRecognizerSubclass.h>

typedef enum {
    DirectionPangestureRecognizerVertical,
    DirectionPanGestureRecognizerHorizontal
} DirectionPangestureRecognizerDirection;

@interface DirectionPanGestureRecognizer : UIPanGestureRecognizer {
    BOOL _drag;
    int _moveX;
    int _moveY;
    DirectionPangestureRecognizerDirection _direction;
}

@property (nonatomic, assign) DirectionPangestureRecognizerDirection direction;

@end

DirectionPanGestureRecognizer.m。

#import "DirectionPanGestureRecognizer.h"

int const static kDirectionPanThreshold = 5;

@implementation DirectionPanGestureRecognizer

@synthesize direction = _direction;

- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
    [super touchesMoved:touches withEvent:event];
    if (self.state == UIGestureRecognizerStateFailed) return;
    CGPoint nowPoint = [[touches anyObject] locationInView:self.view];
    CGPoint prevPoint = [[touches anyObject] previousLocationInView:self.view];
    _moveX += prevPoint.x - nowPoint.x;
    _moveY += prevPoint.y - nowPoint.y;
    if (!_drag) {
        if (abs(_moveX) > kDirectionPanThreshold) {
            if (_direction == DirectionPangestureRecognizerVertical) {
                self.state = UIGestureRecognizerStateFailed;
            }else {
                _drag = YES;
            }
        }else if (abs(_moveY) > kDirectionPanThreshold) {
            if (_direction == DirectionPanGestureRecognizerHorizontal) {
                self.state = UIGestureRecognizerStateFailed;
            }else {
                _drag = YES;
            }
        }
    }
}

- (void)reset {
    [super reset];
    _drag = NO;
    _moveX = 0;
    _moveY = 0;
}

@end

これは、ユーザーが選択した動作でドラッグを開始した場合にのみ、ジェスチャーをトリガーします。direction プロパティを正しい値に設定すれば、準備は完了です。