FUIFormCell
public protocol FUIFormCell: class, FUIInlineValidation
This protocol is to be implemented by all the form cells except FUIAttachmentsFormCell
, including:
- FUIDatePickerFormCell
- FUIFilterFormCell
- FUINoteFormCell
- FUISegmentedControlFormCell
- FUISimplePropertyFormCell
- FUISwitchFormCell
- FUITitleFormCell
-
The value for this form cell.
Declaration
Swift
var value: ValueType
-
Indicates if the
FUIFormCell
is editable or not.Declaration
Swift
var isEditable: Bool
-
Implementation of change handler. Is invoked on changes to the
value
property.Declaration
Swift
var onChangeHandler: ((ValueType) -> Void)?