SMIFormResponseInputs
Objective-C
@protocol SMIFormResponseInputs <SMIEntryTypeFormResponseMessage>
Swift
protocol FormResponseInputs : EntryTypeFormResponseMessage
Represents a form response.
-
The title of the form response.
See
SMIFormTitleItem
Declaration
Objective-C
@property (nonatomic, strong, readonly, nullable) id<SMIFormTitleItem> formTitle;
Swift
var formTitle: (any FormTitleItem)? { get }
-
The values collected from a user for each section of the form.
Declaration
Objective-C
@property (nonatomic, strong, readonly) NSArray<id<SMIFormInputValue>> *_Nonnull inputValues;
Swift
var inputValues: [any SMIFormInputValue] { get }