MPAppMode

@interface MPAppMode : NSObject

Provides a static way to access the possible app modes

  • Indoor app mode (equals 0)

    Declaration

    Objective-C

    + (int)INDOOR;

    Swift

    class func indoor() -> Int32
  • Outdoor app mode (equals 1)

    Declaration

    Objective-C

    + (int)OUTDOOR;

    Swift

    class func outdoor() -> Int32
  • Indoor and outdoor app mode (equals 2)

    Declaration

    Objective-C

    + (int)INDOOR_AND_OUTDOOR;

    Swift

    class func indoor_AND_OUTDOOR() -> Int32