Explain App Life Cycle

The app life cycle refers to the sequence of steps that app takes when an user launches an app until it terminates. Understanding the life cycle will help the developer to manage app behaviour and proper allocation and deallocation of resources.


Image Credit :- Apple

Not Running – Initial stage when the app is not launched or it has been terminated by user or by the system.

Inactive – The app enters Inactive state when it is launched but does not receiving any user inputs.

Active – The app is in the foreground and receiving user inputs.

Background – App enters background state when the user switches to another app or home screen. Please note that the app will not directly transition from Active to Background state, it will first transition to Inactive then to Background state.

Suspended – App enters suspended state when system wants to free resources.

Terminate – App enters terminate state when it is no longer running.

Which state an app is during the following scenario? share your answer in the comment section.

  1. When the app is foreground and you receive a message notification.
  2. When the app is foreground and you receive a phone call and start attending.

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.