Hi there, I'm aware of the fact that the title of this thread is substandard. Anyhow, here's the issue I'm facing:
My App displays a tableView with time-relevant content (content can get "old") and therefor updates on a regular basis by calling a web service and parsing its xml answer.
so, in order to not display "out of date" information to the user, i want to hide the table and display a "content is being loaded"-label as soon as the app enters an inactive state.
to do so, i react upon calls to - (void)applicationWillResignActive:(UIApplication *)application
in my AppDelegate.
that does the job quite well BUT
- if the user double-taps the home icon to open the task switcher the tableview gets faded out as well
- the same thing happens if the iphone locks the screen automatically
so, is there a way to distinguish the "type" of inactive state the app enters or any other means to provide me with the possibility to handle those three state-changes differently? Or do I need to walk on a completely different path here?
Thanks for your help
*sam