Просто обновление для приведенных выше ответов:
Если вы хотите видеть изменения в событии щелчка, т.е. цвет вашего UIVIew shud меняется всякий раз, когда пользователь нажимает на UIView, тогда внесите изменения, как показано ниже ...
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()
}
Также вызовите этот класс из раскадровки и ViewController как:
@IBOutlet weak var panVerificationUIView:ClickableUIView!