With a navigation controller in Swift/Xcode, can I create an unwind segue from a View Controller to the preceding one without creating a custom UIBarButton?
Basically, if I replace the "back" button that's created by default on the navigation item, I could link that to "Exit" and create an unwind segue. However, I wanted to see if there's a way to use the existing "back" button and link a segue identifier to it.
(The one thing I've found out from research which is useful is the default "back" button actually belongs to the preceding View Controller, but this doesn't help me solve me problem.)