I tried many ways, but could not.
That way I can create a new UIBarButtonItem and it works, the problem is that it locks the lock as backButton / ArrowBackButton:
public override void ViewWillAppear (bool animated) { base.ViewWillAppear (animated); this.NavigationItem.LeftBarButtonItem = new UIBarButtonItem ("Tillbaka", UIBarButtonItemStyle.Plain, delegate(object sender, EventArgs e) { this.NavigationController.PopViewControllerAnimated (true); }); }
Tried this, but didn’t work:
public override void ViewWillAppear (bool animated) { base.ViewWillAppear (animated); this.NavigationItem.SetHidesBackButton(false,true); }
source share