RSDInputFieldTableItem
open class RSDInputFieldTableItem : RSDTableItem
RSDInputFieldTableItem
is an abstract base class implementation for representing an answer, or part of an
answer for a given RSDInputField
.
-
The RSDInputField representing this tableItem.
Declaration
Swift
public let inputField: RSDInputField
-
The UI hint for displaying the component of the item group.
Declaration
Swift
public let uiHint: RSDFormUIHint
-
The answer associated with this table item component. Base class returns
nil
.Declaration
Swift
open var answer: Any?
-
Initialize a new RSDInputFieldTableItem. parameters: - rowIndex: The index of this item relative to all rows in the section in which this item resides. - inputField: The RSDInputField representing this tableItem. - uiHint: The UI hint for this row of the table.
Declaration
Swift
public init(rowIndex: Int, inputField: RSDInputField, uiHint: RSDFormUIHint, reuseIdentifier: String? = nil)