Re: iOS app restarting from screen one. Why?

2014-06-19 Thread Alex Zavatone
On Jun 19, 2014, at 12:13 PM, Quincey Morris wrote: > On Jun 19, 2014, at 08:24 , Alex Zavatone wrote: > >> There is no message thrown in the console and the applicationWillTerminate: >> method isn't called at all. > > Generally, since iOS 4, applicationWillTerminate: is never invoked. You ge

Re: iOS app restarting from screen one. Why?

2014-06-19 Thread Quincey Morris
On Jun 19, 2014, at 08:24 , Alex Zavatone wrote: > There is no message thrown in the console and the applicationWillTerminate: > method isn't called at all. Generally, since iOS 4, applicationWillTerminate: is never invoked. You get applicationDidEnterBackground, and that’s where you’re suppos

Re: iOS app restarting from screen one. Why?

2014-06-19 Thread Alex Zavatone
Yeah, I just tried rebooting the device and while I'm running the app on the device through Xcode, the app definitely quits when the Personal Hotspot is toggled on or off, as Xcode states "No Debug Session". There is no message thrown in the console and the applicationWillTerminate: method isn'

Re: iOS app restarting from screen one. Why?

2014-06-19 Thread Alex Kac
Recently I hit the same issue. It was working just fine one day, and then the next - every app from Mail to Safari to 3rd party apps - all were losing their UI state when I’d switch between them. On an iPhone 5s. Reboot fixed it for now. On Jun 19, 2014, at 5:19 AM, Jonathan Hull wrote: > My g

Re: iOS app restarting from screen one. Why?

2014-06-19 Thread Jonathan Hull
My guess would be that Jens is correct. Your app is likely being killed by the system while it is in the background. I tend to run a lot of apps at once and switch between them often, so I run into this all the time. When your app is backgrounded, you should save your UI state and restore it

RE: iOS app restarting from screen one. Why?

2014-06-18 Thread altotest1
Sent from AOLMail On Wednesday, June 18, 2014 Alex Zavatone wrote: I've seen this only since iOS 7 and haven't been able to figure out what causes this. Many times in many applications on iOS, when an app is in the background and is brought to the front, it doesn't continue from the screen

Re: iOS app restarting from screen one. Why?

2014-06-18 Thread Alex Zavatone
Honestly, it seems like it's unrolling the navigation controller for some strange reason when I toggle Personal Hotspot while the app is in the background. Many times I've seen this happen and even when moving various iPhone's Settings panels to the background, then bringing them to the front a

Re: iOS app restarting from screen one. Why?

2014-06-18 Thread Jens Alfke
On Jun 18, 2014, at 11:22 AM, Alex Zavatone wrote: > Does anyone have any info on what causes the app to seemingly unroll it's > Navigation Controller stack and start from the first screen again? Probably because the OS quit the app while it was backgrounded, and it’s being relaunched? Back

iOS app restarting from screen one. Why?

2014-06-18 Thread Alex Zavatone
I've seen this only since iOS 7 and haven't been able to figure out what causes this. Many times in many applications on iOS, when an app is in the background and is brought to the front, it doesn't continue from the screen it was left at. In many cases, I've seen the app restarting from scree