I have a common UIViewController that all my UIViewsControllers extend to reuse some common operations.
UIViewController
UIViewsControllers
I want to set up a segue on this \"
I reverse-engineered and made an open source (re)implementation of UIStoryboard's segues: https://github.com/acoomans/Segway
With that library, you can define segues programmatically (without any storyboard).
Hope it may help.