I often UIImageView
when you tap some actions will be excused instead of UIButton
. Because if you use UIButton
, it isn't excused until you release your finger. But if you use UIImageView
, the action will be excused the moment you touch UIImageView
. But I'm wondering whether it is good way to make "UIButton" or not because when I use UIImageView
, I set the tag of UIImageView
, use touchesBegan
, and check which UIImageView
you tap. I'm not sure the way it good or not.
Do you use UIButton
when you want to do some actions when you touch the object? And what do you think about it?
(I'm sorry I'm a beginner iOS engineer so it might be idiot question.)