Is there a state variable somewhere that tells me the application is about to quit (after UIApplicationWillTerminateNotification
was sent)? UIApplication's applicationState
does not seem to account for this state.
Asked
Active
Viewed 145 times
0

Morrowless
- 6,856
- 11
- 51
- 81
-
May I ask you why you need to know the state after UIApplicationWillTerminateNotification is sent ? Usually you save everything you need and you quit – Dabrut May 11 '12 at 13:56
-
I had a repeating timer that would save data to disk, but I realized I just need to invalidate it when I receive the notification. – Morrowless May 11 '12 at 14:48