DEV Community

Discussion on: How to make simple form validator in Swift

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