UINavigationController “back button” custom text?

后端 未结 16 1457
Happy的楠姐
Happy的楠姐 2020-11-28 01:41

The \"back button\" of a UINavigationController by default shows the title of the last view in the stack. Is there a way to have custom text in the back button

16条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-11-28 02:31

    You can set the text in the Interface Builder:

    Select the navigation item of the ViewController that the back button would return to:

    enter image description here

    In the utilities panel attribute inspector, enter your label for the Back Button:

    enter image description here

    I would prefer this approach over setting the title in code as in the accepted answer.

    Also note, you need to do this in the view controller one level up the stack. In other words, don't do this in the visible view controller, but in the view controller that you'd see if you hit the back button.
    --Tyler

提交回复
热议问题