Skip to content

learn-co-students/swift-animatedValidator-lab-nyc-web-career-021819

Repository files navigation

Animated-Validator

Goal

There are 5 textfields simulating a user sign up page. Your goal is to

  • "validate" each field, meaning check for the appropriate input.
  • if the input is invalid, make the user aware with an eye-catching animation
  • once all fields are valid, enable the submit button.

Instructions

  1. The fields (listed below) have already been added to your Storyboard. The submit button will be disabled by default thanks to a line at the end of viewDidLoad().
  2. Validate your different fields using the criteria listed below. If someone "leaves" the field with an invalid value, make the field flash red and pulse (quickly grow bigger/smaller).
  • There are two ways to be notified when the user exits a text field: the UITextFieldDelegate method textFieldDidEndEditing(_:), or you can wire up an IBAction from the field and select the "Editing Did End" event. Think about which approach works best for you.
  1. As soon as all fields are valid, make the submit button animate in from the bottom.
    • To be notified when the text inside a textfield changes, wire up an action to the field's "Editing Changed" event (not "Value Changed", confusingly).
    • if you're a UITextFieldDelegate fan, there is only textField(_:shouldChangeCharactersIn:replacementString:). Be aware though, this method is more complicated than just "editing changed"!
  2. Set up AutoLayout so the form looks good on all phones in portrait. Don't worry about horizontal for now, that will be extra credit.

The Fields (all are required)

  1. Email * Should be a valid email (don't go nuts with this -- a check for an '@' and a period is probably enough)
  2. Email confirm * should be the same as the first email field
  3. Phone * at least 7 characters * only digits
  4. Password * at least 6 characters
  5. Password Confirm * should be the same as the first password field

Extra Credit

Notice how, when horizontal, our form is partially covered by the keyboard?

  1. Have the active text view move up when the keyboard is shown, if needed.
  • Hint: If you aren't familiar with NotificationCenter just yet, this may call for a Cocoapod!

View animated-validator on Learn.co and start learning to code for free.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •