Tap Gesture on animating UIView not working
I have a tap gesture on a UILabel who's translation is being animated. Whenever you tap on the label during the animation there's no response from the tap gesture. Here's my code: label.addGestureRecognizer(tapGesture) label.userInteractionEnabled = true label.transform = CGAffineTransformMakeTranslation(0, 0) UIView.animateWithDuration(12, delay: 0, options: UIViewAnimationOptions.AllowUserInteraction, animations: { () -> Void in label.transform = CGAffineTransformMakeTranslation(0, 900) }, completion: nil) Gesture code: func setUpRecognizers() { tapGesture = UITapGestureRecognizer(target: