I have an app with a sidebar menu using SWRevealViewController. I followed this tutorial on how to make it, but have a problem. I have many subviews of the first subview that has the prepareForSegue: sender:
method. In my subclass view controller, I have the implementation:
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
// Get the new view controller using [segue destinationViewController].
// Pass the selected object to the new view controller.
do Saving....
[super prepareForSegue:segue sender:sender];
}
The saving never gets called. I put an NSLog()
statement and it was never executed. My layout is the same as the video tutorial (modified for my own app, different view controllers for each table cell). Any help?