DEV Community

Discussion on: How to make simple form validator in Swift

Collapse
 
texyz profile image
Texyz

hi what is InputView? where is coming from ?

Collapse
 
nexxado profile image
Netanel Draiman • Edited

InputView probably looks something like this:

struct InputView {
    let textField: UITextField
    let messageLabel: UILabel
}
Enter fullscreen mode Exit fullscreen mode