Here's my code:
UITapGestureRecognizer *gestureRecognizer = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(resignTextView)];
[self.tableview addGestureRecognizer:gestureRecognizer];
-(void)resignTextView
{
[textView resignFirstResponder];
}
I added tableview with UITapGetureRecognizer
. I do not know why it is not working?