ExperimentType
enum ExperimentType : NSInteger {}
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 tvOSDeclaration
Objective-C
ExperimentTypeVisual
Swift
case visual = 3
-
The experiment type is unknown.
Declaration
Objective-C
ExperimentTypeUnknown
Swift
case unknown = 4
-
The experiment type is a feature variable.
Declaration
Objective-C
ExperimentTypeFeatureVariables
Swift
case featureVariables = 5