How to execute some code after a segue is done?

ios, ios6, segue, uistoryboardsegue, uiviewcontroller

Solution

You can use the `UINavigationControllerDelegate` protocol and then define:

– navigationController:didShowViewController:animated:

Problem

Is it possible in iOS 6 to know when a `UIStoryboardSegue` has finished its transition? Like when i add a `UIStoryboardSegue` from `UIButton` to push another `UIViewController` on the navigationcontroler, i want to to something right after the push-transition is finished.

Original source

Related problems