Reputation: 257
I want to take some action when user deletes the app and removes the app from background.
Is there any event of UIApplication class that gets called or any alternative?
Thanks in advance.
Upvotes: 0
Views: 663
Reputation: 119242
Removes the app from the background: applicationWillTerminate
in your app delegate.
Deletes the app - not that I know of.
Upvotes: 1