ExperimentType

enum ExperimentType {}

This enumerated type is used to indicate the type of experiment that the ApptimizeTestInfo class refers to.

  • The experiment type is a code block.

    Declaration

    Objective-C

    ExperimentTypeCodeBlock

    Swift

    case codeBlock = 0
  • The experiment type is a feature flag.

    Declaration

    Objective-C

    ExperimentTypeFeatureFlag

    Swift

    case featureFlag = 1
  • The experiment type is a dynamic variable.

    Declaration

    Objective-C

    ExperimentTypeDynamicVariables

    Swift

    case dynamicVariables = 2
  • The experiment is visual.

    Note

    Only available on iOS or tvOS

    Declaration

    Objective-C

    ExperimentTypeVisual

    Swift

    case visual = 3
  • The experiment type is unknown.

    Declaration

    Objective-C

    ExperimentTypeUnknown

    Swift

    case unknown = 4