0
を設定するとき、私はaction
が発射されて、あなたはなぜ知っている前にCollectionViewController UILongPressGestureRecognizerだけ遅延と最小
longGesture.minimumPressDuration = 0.3;
longGesture.delaysTouchesBegan = true;
を設定する必要があり、なぜ私が理解することはできません動作しますか?
longGesture = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(handleGesture:)];
longGesture.minimumPressDuration = 0.3;
longGesture.delaysTouchesBegan = true;
[self.collectionView addGestureRecognizer:longGesture];
delaysTouchesBeganはcollectionviewのdidHighlightItemAtIndexPathのmethosのトリガを避けるために設定します。 minimumPressDurationは必須ではありません。デフォルトは0.5です。 –