Swift 3.0
Инициализировать жест для tempLabel
tempLabel?.text = "Label"
let tapAction = UITapGestureRecognizer(target: self, action: #selector(self.actionTapped(_:)))
tempLabel?.isUserInteractionEnabled = true
tempLabel?.addGestureRecognizer(tapAction)
Приемник действий
func actionTapped(_ sender: UITapGestureRecognizer) {
}
Swift 4.0
Инициализировать жест для tempLabel
tempLabel?.text = "Label"
let tapAction = UITapGestureRecognizer(target: self, action:@selector(actionTapped(_:)))
tempLabel?.isUserInteractionEnabled = true
tempLabel?.addGestureRecognizer(tapAction)
Приемник действий
func actionTapped(_ sender: UITapGestureRecognizer) {
}
userInteractionEnabled = true