How to change text on a back button

前端 未结 20 2092
无人及你
无人及你 2020-11-29 17:24

By default the back button uses as a text on it a title of a viewcontroller. Can I change text on the back button without changing a title of a view controller? I need this

20条回答
  •  栀梦
    栀梦 (楼主)
    2020-11-29 17:50

    And in MonoTouch the following works (in ViewDidLoad of the parent controller):

    NavigationItem.BackBarButtonItem = new UIBarButtonItem( "Back", UIBarButtonItemStyle.Plain, null);
    

提交回复
热议问题