Back button not appearing on UINavigationController

后端 未结 5 567
抹茶落季
抹茶落季 2021-01-05 18:39

I have a UINavigationController setup in my AppDelegate:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSD         


        
5条回答
  •  伪装坚强ぢ
    2021-01-05 19:18

    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.

提交回复
热议问题