When the UITextView is tapped, I want it to stay working as the first responder but I need also to fire other events. The UITapGestureRecognizer works well before the UITextView is not first responder, but after it gets focused the tap is not recognized any more.
UITapGestureRecognizer *singleTap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(singleTapRecognized:)];
singleTap.numberOfTapsRequired = 1;
[txtView addGestureRecognizer:singleTap];
[singleTap release];
-(IBAction)singleTapRecognized:(id)sender
{
//Does not enter here with a tap after txtView is first responder
}