Explain some common execution states in iOS?

devquora
devquora

Posted On: Feb 22, 2018

 

The states of the common execution can be as follows:

  • Not running – This state means that there is no code that is being executed and the application is completely switched off.
  • Inactive – This state means that the application is running in the background and is not receiving any events.
  • Active – This state means that the applications are running in the background and is receiving the events.
  • Background – This state means that the application is executing the code in the background.
  • Suspended – This state means that the application is in the background and is not executing.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    Swift Interview Questions

    What is IOS Swift?

    iOS swift is an intuitive and stalwart language for the iOS. It is joyful to deal with the writing stuff in Swift. It is very advanced and its syntax is also concise and expressive too...

    Swift Interview Questions

    What is Dictionary in Swift?

    It enables you to store the key-value pairs and access the value by providing the key.It is similar to that of the hash..

    Swift Interview Questions

    Explain Enum in Swift?

    Basically, it is a type that contains a group of various related values under the same umbrella...