Back button not appearing on UINavigationController

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

I have a UINavigationController setup in my AppDelegate:

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


        
5条回答
  •  一个人的身影
    2021-01-05 19:34

    Are you setting self.title in RootViewController? Perhaps the UINavigationController doesn't have any text to put on the back button, so it omits it...?

    Are you setting hidesBackButton = YES or backBarButtonItem = nil in DealViewController, or does it have a different leftBarButtonItem defined?

提交回复
热议问题