FlaneurFormElementType
public enum FlaneurFormElementType
An enumeration of the types supported by FlaneurFormView
.
-
The type of text field elements (ie 1-line).
Declaration
Swift
case textField
-
The type of text area elements (ie multi-line).
Declaration
Swift
case textArea
-
The type of image picker elements.
Declaration
Swift
case imagePicker(delegate: FlaneurFormImagePickerElementCollectionViewCellDelegate)
-
The type of the main select element of a form.
Declaration
Swift
case select(delegate: FlaneurFormSelectElementCollectionViewCellDelegate)
-
The type of the seconday select element of a form. (duplicated for bad design reasons and reusability of form components, cf.
FlaneurFormView
documentation for more information about why the design is bad).Declaration
Swift
case selectBis(delegate: FlaneurFormSelectElementCollectionViewCellDelegate)
-
The type of a deletion element.
Declaration
Swift
case delete(delegate: FlaneurFormDeleteElementCollectionViewCellDelegate)
-
The type of a button element.
Declaration
Swift
case button
-
Declaration
Swift
public static func == (lhs: FlaneurFormElementType, rhs: FlaneurFormElementType) -> Bool