SMIFormSingleInputValue
Objective-C
@protocol SMIFormSingleInputValue <SMIFormInputValue>
Swift
protocol FormSingleInputValue : SMIFormInputValue
Represents a response of a single value form input.
-
The display string that represents this value.
Declaration
Objective-C
@property (nonatomic, strong, readonly, nullable) NSString *displayValue;
Swift
var displayValue: String? { get }
-
The value of the response.
See
SMIFormSingleInputValue
Declaration
Objective-C
@property (nonatomic, strong, readonly, nullable) id<SMIFormResponseValue> value;
Swift
var value: (any FormResponseValue)? { get }