UIImageView UIControl ( UIButton), UIControl, addTarget: action UIImageView, UIControl.
UIImageView SWImageView :
- (void)addTarget:(id)target action:(SEL)action;
:
- (void)addTarget:(id)target action:(SEL)action
{
if (tapGestureRecognizer!=nil) {
[self removeGestureRecognizer:tapGestureRecognizer];
}
tapGestureRecognizer = [[UITapGestureRecognizer alloc] initWithTarget:target action:action];
[self addGestureRecognizer:tapGestureRecognizer];
}
:
self.userInteractionEnabled = YES;