Reputation: 4575
These errors keep happening from time to time when i run my app. There doesn't seem to be any rhyme or rhythm to when the errors happen. Sometimes I can run and quit my app 100 times and not see these. Sometimes every 5 times they will show up. They go away but they are slowing down the dev process. How can I fix the underlying issue?
Upvotes: 1
Views: 1344
Reputation: 20234
In my experience, these 3 cases occur in 3 different scenarios.
"Springboard Error" is a common iOS simulator issue since Xcode 5.
"lost connection" occurs when you disconnect the device or quit the simulator prematurely.
(example: click run and then stop it almost immediately)
"Simulator in use" occurs when you're already running, say, ABC
xcode project in the iOS simulator and you want to run another Xcode project, say, XYZ
project in the iOS simulator simultaneously.
ABC
project, stop it and then run XYZ
project.Upvotes: 1