I have a RootViewController and a SecondViewController, both of which are UITableViewController.
The table view on RootViewController is working fine recognizing the slide gesture as Delete, was able to detect touch select on a row. But somehow the SecondViewController table was not recognizing the slide gesture. It did recognize row select touches.
What could cause this problem?
in RootViewController.m:
-(IBAction)btnClicked

id)sender{
SecondViewController *ctrl = self.secondViewController;
[self.navigationController pushViewController:ctrl];
}
in SecondViewController.m:
- editingStyle set to None
- canEditRow set to YES
- didSelectRow executes deselectRow only at this time
- commitEditing if Style is Delete, then remove object from array
in SecondView.xib I have set to allow User Interaction and Multiple Touches.
Would appreciate any pointer to where to look for potential causes. Thanks.