PerformSegue - Does it stop further code execution?

Is the executeSegue function of the call supposed to stop further code execution and pass execution to the target?

I have this simple call: performSegue (withIdentifier: "showTweets", sender: self) But it looks like the following code after this line is still executing ... Is this ok?

+3


source to share


1 answer


No, this will not stop further execution. The actual segue transition will happen when you return control to the main run loop (for example, return with a @IBAction

checked callback method).



+7


source







All Articles