applicationDidEnterBackground
applicationDid... refers to a set of lifecycle methods in the iOS UIApplicationDelegate protocol whose names begin with the prefix applicationDid. These methods allow an app to respond to changes in its execution state, such as launching, becoming active, or entering the background. They are called by the system at key moments in the app’s life cycle and are commonly implemented to initialize resources, save state, and manage tasks that should pause or resume with the app’s state.
Common examples include: application:didFinishLaunchingWithOptions:, called after the app has launched and initialized; used for setup and
Since iOS 13, many apps use scenes (SceneDelegate) to manage per‑scene lifecycles, while the app delegate handles