I'm not quite sure what you wanted, so I will answer most of what I think you might want for your sake, and anyone who looks at it in the future.
Firstly:. You need a back button, similar to the default Apple app button. To do this, you need to: a) get a link to the destination scene and view the controller. Suppose you did this and set it to controller for future reference. b) You need to set the left button element. Install it with:
controller.navigationItem.leftBarButtonItem = UIBarButtonItem(title: "Insert Title Here!!", style: UIBarButtonItemStyle.Plain, target: nil, action: nil)
Put it all in prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) (You will also find a destination scene with this, probably with segue.destinationViewController
Second: You want to use the image with the name "Back" for all elements. If so, repeat step a) above and insert this convenient bit of code:
UIBarButtonItem(image: "Back", style: UIBarButtonItemStyle.Plain, target: nil, action: nil)
I also know that you do not want to copy it, but it is not as if this computer was intense anyway, and it is probably the easiest.
Third: You are smart and do not hate progress in programming, so you want to use a storyboard. If so, just drag the navigation bar from the object’s menu, add a navigation element and copy it to all your scenes. If your scenes are related to custom classes, then super funny fun interesting news, you can simply associate a navigation item with your custom class using IBAction and use this function to do whatever the fantasy can bring you.
Fourth: You really, really do not want to copy something, even if it is not so difficult. If so, you can subclass the UIViewController with your own class, add the code mentioned above, and then subclass all of your future UIView classes like this. Honestly, I'm not entirely sure that this will work, and it seems unnecessarily time-consuming, but it is up to you.
I am a little tired now, so I'm sorry for all the things that seem funny to me, but I hope I helped, and please tell me if I completely missed your point of view and I can try to find a solution.