user869123
user869123

Reputation: 257

Event when app is removed from background or deleted in iOS

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

Answers (1)

jrturton
jrturton

Reputation: 119242

Removes the app from the background: applicationWillTerminate in your app delegate.

Deletes the app - not that I know of.

Upvotes: 1

Related Questions