C.Johns
C.Johns

Reputation: 10245

ios app dosnt work when testing on a test device

When I build the application to the testing phone everything works fine. If i then press the home button go back to the main screen then run the app , again everything works fine.

However if I quit the app to the home screen then close the application from running in the background and then try to run the app again from the main icon, it wont run it just goes to black screen and stops the phone from working or itll load the main view and none of the buttons work.. the only way to fix the phone so its usable again is to lock it and turn the device on again..

has anyone suffered this same issue before?

Upvotes: 0

Views: 71

Answers (1)

Keller
Keller

Reputation: 17081

Sometimes the bootstrap server seems to get confused when you hit the home button and return to the app. If you are testing multi-tasking/background behavior, try the following process:

  1. Build and run from Xcode.
  2. Disconnect your device (your app will quit).
  3. Now, truly quit the app by double tapping the home button and holding down on the app icon.
  4. Finally, reopen the app and test for multi-tasking/backgrounding behavior (your won't get console messages however).

Upvotes: 2

Related Questions