Changing the UIBackButtonItem title

前端 未结 14 909
终归单人心
终归单人心 2020-12-04 17:48

I have a navigationController-based app. I want to change the title of the back button for the root view controller. I have tried the following code in the rootViewControlle

14条回答
  •  猫巷女王i
    2020-12-04 18:40

    I have interesting solution:

    In the method that navigate to the second view (IBAction or didSelectRaw etc.) I change to the title that I want in the title of back item, for example: self.title = @"Inbox";. In addition, I add method ViewWillApear to change the title when the user click back to primary title.

提交回复
热议问题