LCStepState

Objective-C

enum LCStepState : NSUInteger {}

Swift

enum LCStepState : UInt, @unchecked Sendable

State of LCStep

  • Activated hadling conditions of step scenario

    Declaration

    Objective-C

    LCStepStarted

    Swift

    case started = 0
  • Collecting user actions according to step scenario

    Declaration

    Objective-C

    LCStepInProgress

    Swift

    case inProgress = 1
  • Step processing is finished

    Declaration

    Objective-C

    LCStepFinished

    Swift

    case finished = 2