I am trying to find a method to catch the return from segue to the root controller so that I can run my own code that will decide where to go next. I tried the two methods below, and they do not do the trick, as they (obviously) should be busy spinning the segue stack. Any thoughts out there?
-(UIStoryboardSegue *)segueForUnwindingToViewController
{
}
-(BOOL)canPerformUnwindSegueAction
{
}
source
share