AppsFlyer interview question

What does the AppDelegate (IOS) responsibilities are?

Interview Answer

Anonymous

20 Feb 2016

It contains your app’s startup code. It responds to key changes in the state of your app. Specifically, it responds to both temporary interruptions and to changes in the execution state of your app, such as when your app transitions from the foreground to the background. It responds to notifications originating from outside the app, such as remote notifications (also known as push notifications), low-memory warnings, download completion notifications, and more. It responds to events that target the app itself and are not specific to your app’s views or view controllers.

1