TextAreaView

open class TextAreaView<Row> : View<Row>, UITextViewDelegate where Row : TextRowType

TextAreaView defines a view that has a text view

Version

1.8.0

Date

06/05/22

Author

Adamas
  • Set the accessory view of the text field

    Declaration

    Swift

    public var inputTextFieldAccessoryView: UIView? { get set }
  • Get the current text on the screen

    Declaration

    Swift

    public var text: String? { get }
  • Set the theme of the text view

    Declaration

    Swift

    public var theme: TextViewThemeType?
  • Reset the view to the normal state

    Declaration

    Swift

    public func reset()
  • Undocumented

    Declaration

    Swift

    @discardableResult
    open override func becomeFirstResponder() -> Bool
  • Declaration

    Swift

    public override func configure(with row: RowType)
  • Undocumented

    Declaration

    Swift

    public func textView(_ textView: UITextView,
                         shouldChangeTextIn range: NSRange,
                         replacementText: String) -> Bool
  • Undocumented

    Declaration

    Swift

    public func textViewDidBeginEditing(_ textView: UITextView)
  • Undocumented

    Declaration

    Swift

    public func textViewDidEndEditing(_ textView: UITextView)