I need to implement event when i close my app in iOS like following pic.

I want to catch that event when i close app with that minus button.
Which event i need to do?
I need to implement event when i close my app in iOS like following pic.

I want to catch that event when i close app with that minus button.
Which event i need to do?
This delegete will be called when your application is going to terminate.
- (void)applicationWillTerminate:(UIApplication *)app
{
}
If you are using iOS 4 or greater and with multi-tasking support, applicationWillTerminate will not be called.
For receiving the terminate event you need to add UIApplicationExitsOnSuspend key on your info.plist
Check this article for a good understanding about application events.


You may want to implement the
- (void)applicationWillTerminate:(UIApplication *)app;
method in your app delegate.
You can handle it in
- (void)applicationWillTerminate:(UIApplication *)application
which tells the delegate when the application is about to terminate.
Alternatively, you can listen to to the UIApplicationWillTerminateNotification notification.
See also: UIApplicationDelegate Protocol Reference
func sceneDidDisconnect(_ scene: UIScene) if you're using SceneDelegate