I am having a series of imageview arranged, and assigning a TapView recognizer to it
UITapGestureRecognizer *tapRecognizer = [[UITa
Just Change your Selector Method with the following..and it will work
tapgesture will have the whole view which is tapped.. and then you can get the tag property from it as i have stated in following
-(void)action:(UITapGestureRecognizer *)tapGesture{
NSLog(@"TESTING TAP");
NSLog (@"%d",tapGesture.view.tag);
}