स्विफ्ट 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
}
स्विफ्ट 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
}
userInteractionEnabled = true