Default UIBarButtonItems with protocols
Having to create the same set of buttons over and over can become cumbersome. We'll try to make use of protocols and implement some default ones. Let's start with that:
@objc protocol CanGoBack { // Sounds better than Backable :)
func back()
}