Tylko aktualizacja powyższych odpowiedzi:
Jeśli chcesz zobaczyć zmiany w zdarzeniu kliknięcia, tj. Kolor Twojego UIVIew zmieni się za każdym razem, gdy użytkownik kliknie UIView, wprowadź zmiany jak poniżej ...
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()
}
Wywołaj również tę klasę z Storyboard & ViewController jako:
@IBOutlet weak var panVerificationUIView:ClickableUIView!