Showing a different XIB/NIB in an iOS app
I have multiple nib (xib) files and I want the user to see a different one when they tap a button. What I am looking for: - (IBAction)buttonTap { //Code for showing a different nib goes here } I can't figure out how to do this. I can show a different view within the nib file just fine, but I can't get it to show a different nib. How do I show a different nib when the user taps a button? Any help is appreciated! Thanks! The way I handle switching between actual xib's, and I'm sure there are a multitude of ways to accomplish the same thing, is to have my App Delegate act as a routing center