如何在 xamarin IOS Native 上更改后退栏按钮标题

How to change the back bar button title on xamarin IOS Native

我是 xamarin 的新手 IOS native ,我想更改后栏项目名称。

我试过了 NavigationItem.BackBarButtonItem.Title = "Promotions";在 ViewDidLoad(); 上,但我有一个例外。

如果要修改当前viewController的返回项名称,应在上一个viewController中设置。过去自定义一个新的UIBarButtonItem viewController:

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