groups: - id: registry.ios.deprecated type: attribute_group display_name: Deprecated iOS Attributes brief: > The iOS platform on which the iOS application is running. attributes: - id: ios.state stability: development deprecated: "Renamed to `ios.app.state`" brief: Deprecated. use the `ios.app.state` instead. note: > The iOS lifecycle states are defined in the [UIApplicationDelegate documentation](https://developer.apple.com/documentation/uikit/uiapplicationdelegate), and from which the `OS terminology` column values are derived. type: members: - id: active value: 'active' brief: > The app has become `active`. Associated with UIKit notification `applicationDidBecomeActive`. stability: development - id: inactive value: 'inactive' brief: > The app is now `inactive`. Associated with UIKit notification `applicationWillResignActive`. stability: development - id: background value: 'background' brief: > The app is now in the background. This value is associated with UIKit notification `applicationDidEnterBackground`. stability: development - id: foreground value: 'foreground' brief: > The app is now in the foreground. This value is associated with UIKit notification `applicationWillEnterForeground`. stability: development - id: terminate value: 'terminate' brief: > The app is about to terminate. Associated with UIKit notification `applicationWillTerminate`. stability: development