Hanya pembaruan untuk jawaban di atas:
Jika Anda ingin melihat perubahan dalam acara klik, yaitu Warna dari UIVIew Anda berubah setiap kali pengguna mengklik UIView kemudian lakukan perubahan seperti di bawah ini ...
class ClickableUIView: UIView {
override func touchesBegan(touches: Set<UITouch>, withEvent event: UIEvent?) {
if let touch = touches.first {
let currentPoint = touch.locationInView(self)
}
self.backgroundColor = UIColor.magentaColor()
}
override func touchesMoved(touches: Set<UITouch>, withEvent event: UIEvent?) {
if let touch = touches.first {
let currentPoint = touch.locationInView(self)
}
self.backgroundColor = UIColor.magentaColor()
}
override func touchesEnded(touches: Set<UITouch>, withEvent event: UIEvent?) {
if let touch = touches.first {
let currentPoint = touch.locationInView(self)
}
self.backgroundColor = UIColor.whiteColor()
}
Juga, panggil Kelas ini dari Storyboard & ViewController sebagai:
@IBOutlet weak var panVerificationUIView:ClickableUIView!