Hello all,
I have an app that uses a UINavigationController
to control its flow, and I want to be able to dynamically swap views into and out of one of the pages in my app. The UINavigationController Reference from Apple's Docs shows this diagram outlining the structure of a UINavigationController.
So my question is this: from within the currently-displayed UIViewController
, how do I access the area labeled as "Your custom content here" to determine its frame/size and how do I swap content into and out of it?
Thanks!