Problem with User Interaction

let fireTap = UITapGestureRecognizer(target: self, action: #selector(fireAlertClick))

featureView.fireButton.isUserInteractionEnabled = true

featureView.fireButton.addGestureRecognizer(fireTap)

yes that will be a problem:


let fireTap = UITapGestureRecognizer(target: self, action: #selector(fireAlertClick))
            featureView.fireButton.isUserInteractionEnabled = true
            featureView.fireButton.addGestureRecognizer(fireTap)
Problem with User Interaction
 
 
Q