Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When I use the following code, prepareForSegue is not called.

- (void)viewWillAppear:(BOOL)animated{    
        UITapGestureRecognizer *gestureRecognizer = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(hideKeyboard)];
        [self.tableView addGestureRecognizer:gestureRecognizer];        
}

- (void)hideKeyboard {
    [self.view endEditing:YES];
}

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender{
    NSLog(@"prepareForSegue");
}

How to support these two behaviours?

EDIT:

prepareForSegue is called after pressing the button in a custom table cell

EDIT 2:

Any advices to hide SOFTKEYBOARD another way?

share|improve this question
when are you trying to do -prepareForSegue, inside -viewWillAppear? – iNailuY Oct 8 '12 at 22:31
I edited the question – barn.gumbl Oct 8 '12 at 22:34
" it's difficult to tell what is being asked here." Are you serious? This question is still actual for me... :( – barn.gumbl Oct 9 '12 at 20:42

closed as not a real question by tc., JKirchartz, the Tin Man, Guvante, Bryan Crosby Oct 9 '12 at 17:24

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.