I am probably missing the obvious here, I am in a viewController that has been pushed onto a UINavigationController stack when the user selects a button on the "Main" screen.

What I am trying to do is get to a point where I can access the UIBarButtonItem for the back button (Shown on the image as "Main") and call setBackButtonBackgroundImage:forState:barMetrics: to customize the button.
What I am confused about is do I need to do this from each UIViewController that is pushed on, or is it something that I need to do just once on the UINavigationController itself?
I thought I might be able to access what I wanted from the pushed controller using:
UINavigationItem *navItem = [self navigationItem];
but think I am getting mixed up with the way things are setup.