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?
-prepareForSegue, inside-viewWillAppear? – iNailuY Oct 8 '12 at 22:31