I am having a series of imageview arranged, and assigning a TapView recognizer to it
imageview
TapView
UITapGestureRecognizer *tapRecognizer = [[UITa
You cannot get tag property of UITapGestureRecognizer rather you have to get of its view's property,
tag
UITapGestureRecognizer
You can try,
-(void)action:(id)sender { NSLog(@"TESTING TAP"); NSLog (@"%d",[[sender view]tag]); }