FUINoteFormCellContentView
open class FUINoteFormCellContentView : FUIFormCellContentView<FUITextView>, FUIValueComponent, FUIPlaceholderComponent, UITextViewDelegate
The content view of a FUIDrawingNoteFormCell
.
-
If
isTrackingLiveChanges
is true, thenonChangeHandler
will be invoked for every letter entered.Otherwise,
onChangeHandler
will be invoked only after user tapsDone
key, or the field resigns first responder.Defaults to
false
.Declaration
Swift
public var isTrackingLiveChanges: Bool
-
The minimum number of lines in the
valueView
. The cell height will be set to display the text with this number of lines. The default value is 1. Setting this value to less or equal to zero is ignored. This property is ignored when the height of the cell is fixed.Declaration
Swift
public var minNumberOfLines: Int { get set }
-
The maximum number of lines in the
valueView
. The cell height could grow to display the text with this number of lines. This property is ignored when the height of the cell is fixed. The default is 0. Any value less or equals to zero means no limit.Declaration
Swift
public var maxNumberOfLines: Int