VLDDiabetesOutOfRange

Objective-C

enum VLDDiabetesOutOfRange : NSUInteger {}

Swift

enum VLDDiabetesOutOfRange : UInt

Represents whether a blood glucose reading was in the accepted range of values as indicated by the glucose meter.

  • Reading was within the accepted range.

    Declaration

    Objective-C

    VLDDiabetesOutOfRangeInRange

    Swift

    case inRange = 0
  • Reading was above the accepted range.

    Declaration

    Objective-C

    VLDDiabetesOutOfRangeHigh

    Swift

    case high = 1
  • Reading was below the accepted range.

    Declaration

    Objective-C

    VLDDiabetesOutOfRangeLow

    Swift

    case low = 2