I feel this should be simple but I can’t find an answer. I want to get a reference to a navigation controller (or any object/view, actually) using an identifier I assigned it in storyboard (in this case “myNavCon”). I want something like this to work:
UINavigationController *myNavigationController = [self getObjectByIdentifier:@"myNavCon"];
How can I do this?
Solved this by assigning the navigation controller to an app delegate property (where it can be referenced globally) from an early view that contained only the 1 navigation controller.