Rapide 3.0
Initialiser le geste pour tempLabel
tempLabel?.text = "Label"
let tapAction = UITapGestureRecognizer(target: self, action: #selector(self.actionTapped(_:)))
tempLabel?.isUserInteractionEnabled = true
tempLabel?.addGestureRecognizer(tapAction)
Récepteur d'action
func actionTapped(_ sender: UITapGestureRecognizer) {
// code here
}
Rapide 4.0
Initialiser le geste pour tempLabel
tempLabel?.text = "Label"
let tapAction = UITapGestureRecognizer(target: self, action:@selector(actionTapped(_:)))
tempLabel?.isUserInteractionEnabled = true
tempLabel?.addGestureRecognizer(tapAction)
Récepteur d'action
func actionTapped(_ sender: UITapGestureRecognizer) {
// code here
}