As @Andrew said, you can use
self.navigationItem.HidesBackButton = false;
to hide the back button, and also you can use
NavigationItem SetHidesBackButton (false, true);
if you want to hide it with animation. But I want to tell you about
NavigationItem.backBarButtonItem is null .
Well, the back button element that you see in the navigation bar belongs to the previous view controller, so you get a null value.
And if you create a button element with some strange names and additional functions (I donβt know what else you can do with it.) And add it to your NavigationItem.backBarButtonItem file, it will be shown in the next view controller that is pushed on it.
This is the reason for your part of NavigationItem.backBarButtonItem is null your question.
source share