SKLowPowerModeState

Objective-C

enum SKLowPowerModeState : NSUInteger {}

Swift

enum SKLowPowerModeState : UInt, @unchecked Sendable

These constants indicate the type of the device’s low power mode.

  • Disabled. This is the normal mode that all device’s features are enabled.

    Declaration

    Objective-C

    SKLowPowerModeStateDisabled = 0

    Swift

    case disabled = 0
  • When a device is in Low Power Mode, some features are disabled or take longer to be completed. However, the device lasts longer.

    Declaration

    Objective-C

    SKLowPowerModeStateEnabled

    Swift

    case enabled = 1