I have just installed Xcode 4.5 for iOS6 support, and I have seen a new icon called ‘Exit’ in my Storyboard, listed under my view controllers along with ‘First Responder’ etc. A little green icon labeled ‘Exit’.
I can find anything about it, nor work out how it can be used. How does it work?
This is called an “Unwind Segue“. Unfortunately there’s no documentation for this so far except a brief mention on XCode 4.5 new features list that states:
The good news is that there is a session from WWDC 2012 explaining those creatures (among other things).
You can just login to Apple’s iOS Dev Center with your developer account details and then go to the WWDC 2012 videos page and watch “Adopting Storyboard in your App” (it’s fifth from the top) The discussion of unwind segues starts at time 37:20.
Update:
Here is some more info on the subject from Apple’s documentation
(From iOS6 docset > General > Getting Started)
And here is a nice example of how you can implement one
Another Update:
Here is a technical note from Apple regarding this topic.