nico
1
Hello, What is the mistake in here please?
override func viewDidAppear(_ animated: Bool) {
self.performSegue(withIdentifier: "loginView", sender: self);
}
}
They write Thread 1:breakpoint 1.1 at this line:
self.performSegue(withIdentifier: "loginView", sender: self);
Sorry for lack of detail in advance I can't detail more because I don't know much more.
Thank you in advance.
nnnnnnnn
(Nate Cook)
2
Hi Nico — it looks like you might have accidentally set a breakpoint at that line, which is pausing the execution of your app. You can see what that looks like in the diagram here: Apple Developer Documentation
You can drag the breakpoint marker off the line numbers to remove it.
krilnon
(Kyle Murray)
3
There’s some useful information about this in Xcode Help as well: https://help.apple.com/xcode/mac/10.0/#/dev9a374afc9
1 Like
nico
4
Ok thanks krilnon, i got it right.