The prequel for this question is here. Now I’ve got another problem. I cannot navigate despite of the didSelectRowAtIndexPath getting invoked while tapping on cell
KMList *detailViewController = [self.storyboard instantiateViewControllerWithIdentifier:@"KMs"];
detailViewController.fromPeriod=self.fromPeriod;
detailViewController.period1=self.entityID;
[self.navigationController pushViewController:detailViewController animated:YES];
What the problem. Is it because I am kind of off the storyboard?
P.S No warnings or errors. Just nothing happens.
Thanks in advance.
You should not push the new view controller in code when using a storyboard. This is done automatically. Instead make a push-Segue in Interface Builder and give it an identifier. Then in your view controller you overwrite
prepareForSegue:sender:and check for the identifier like this: