I know how to implement touchesBegan for UIImageView
touchesBegan
UIImageView
is it possible to implement UITouchDown for UIImageView ?(i know
UITouchDown
You can't.
control events such as UIControlEventTouchDown etc are available for UIControl's child objects like UIButton, UITextField etc. UIImageView is a UIView and hence cannot generate control notifications.
UIControlEventTouchDown
UIControl's
UIButton
UITextField
UIView
You have to use touchesBegan and co.