FUIEmailInputView

public class FUIEmailInputView : NibDesignable, UITextFieldDelegate

A simple UIView subclass to take email address as input.

Theming

Supported style classes

fdlFUIEmailInputView
fdlFUIEmailInputView_emailTextField
fdlFUIEmailInputView_bottomBorderView
  • The text field of FUIEmailInputView.

    Declaration

    Swift

    @IBOutlet
    @IBInspectable
    public private(set) var emailTextField: FUIAutoResizingTextField! { get }
  • The buttom padding height constraint from the bottom boarder to the view’s bottom. Sets the constant property of this constraint to add padding at the bottom of this FUIEmailInputView. The default constant property value is 0.

    Declaration

    Swift

    @IBOutlet
    public private(set) var bottomPaddingViewHeightConstraint: NSLayoutConstraint! { get }
  • handler being called on text change.

    Declaration

    Swift

    public var onTextFieldChangeHandler: ((String) -> Void)?