iOS - background mode with Xcode connected in debug mode
Asked Answered
I

1

4

I'm using background audio mode in my app to play music, but when the track list skips between tracks the app is shut down. My problem with tracking this bug is that when I run the app in debug mode with Xcode connected the app will stay in foreground forever! Is there a way to tell Xcode to let the app enter it's background mode with Xcode connected in debug mode?

Isotron answered 25/12, 2016 at 19:44 Comment(3)
Just tap on Home button of the device it will send the app in background mode and you can debug too.Osteen
Run the app in debug mode and send the app to background with the Home button. Any breakpoint or crash will be shown in Xcode.Arjuna
Thanks for your answers -IIsotron
S
6

To simulate a background fetch, launch your app and then go to Xcode and choose Debug > Simulate Background Fetch.

enter image description here

You can also configure a scheme to control how Xcode launches your app. To enable your app to be launched directly into a suspended state, choose Product > Scheme > Edit Scheme and select the Background Fetch checkbox.

Spandau answered 26/12, 2016 at 6:5 Comment(1)
Thanks - this was what I'm looking for but haven't seen it! THANKS!Isotron

© 2022 - 2024 — McMap. All rights reserved.