e.g。交换另一个UIImage等。
答案 0 :(得分:2)
UIImageView是UIView的子类。您可以使用addGestureRecognizer:
将姿势识别器添加到任何视图。
答案 1 :(得分:2)
我看到你标记了这个[iphone-sdk-3.0]。如果您可以使用SDK 3.2或更高版本,则可以使用UISwipeGestureRecognizer
轻松完成。如果你必须坚持3.0,你必须继承UIImageView并处理touchesBegan:withEvent:
,touchesMoved:withEvent:
,touchesEnded:withEvent:
和/或touchesCancelled:withEvent:
。