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) {
// code here
}
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) {
// code here
}