ios.app.state
Developmentenumas of v1.44.0
This attribute represents the state of the application.
The iOS lifecycle states are defined in the UIApplicationDelegate documentation, and from which the OS terminology column values are derived.
Values (5)
activeThe app has becomeactive. Associated with UIKit notificationapplicationDidBecomeActive.inactiveThe app is nowinactive. Associated with UIKit notificationapplicationWillResignActive.backgroundThe app is now in the background. This value is associated with UIKit notificationapplicationDidEnterBackground.foregroundThe app is now in the foreground. This value is associated with UIKit notificationapplicationWillEnterForeground.terminateThe app is about to terminate. Associated with UIKit notificationapplicationWillTerminate.
Used by
events (1)
- device.app.lifecycle
* required on that signal.
History
Added as development.