I have a UINavigationController setup in my AppDelegate:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSD
This happened to me because in my navigation controller's content controller I had set up some navigation controller behavior in viewDidLoad
and in another class that inherits from my content controller, and the one that was being presented, i implemented a viewDidLoad
as well, and forgot to call [super viewDidLoad]
which thereby caused me to override the base class's viewDidLoad
where I was setting up my navigation controller buttons. Oooops.