0
私はUIPanGestureRecognizerを持っているセルウィッシュのcontentViewのアニメーションを持っています。UIPanGestureRecognizerと制約アニメーションとの競合
UIPanGestureRecognizerはうまく動作し、タッチを検出しますが、アニメーションが実行されている間は、アニメーションを終了するまでタッチを検出しません。
これには回避策があります。
これは
[self.myContentView layoutIfNeeded];
self.contentViewLeftConstraint.constant = -50;
self.contentViewRightConstraint.constant = 50;
[UIView animateWithDuration:duration delay:0 options:UIViewAnimationOptionCurveEaseOut animations:^{
[self.myContentView layoutIfNeeded];
} completion:completion];
おかげアニメーションブロックです。
はありがとうございました! あなたは私の一日を保存しました:) – zizoodiesel