Sadece yukarıdaki cevaplara bir güncelleme:
Tıklama olayındaki değişiklikleri görmek istiyorsanız, yani kullanıcı UIView'a her tıkladığında UIVIew shud renginizin değişmesini istiyorsanız, ardından aşağıdaki gibi değişiklikler yapın ...
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()
}
Ayrıca, Storyboard & ViewController'daki bu Sınıfı şu şekilde adlandırın:
@IBOutlet weak var panVerificationUIView:ClickableUIView!