Skip to content

Instantly share code, notes, and snippets.

@bill350
Last active January 18, 2018 20:39
Show Gist options
  • Select an option

  • Save bill350/84c6bc3ee4fd20d6059449005f34a533 to your computer and use it in GitHub Desktop.

Select an option

Save bill350/84c6bc3ee4fd20d6059449005f34a533 to your computer and use it in GitHub Desktop.
// MARK: Form Validation
@discardableResult
func isValid() -> (Bool, String?) {
var isValid = true
for item in self.formItems {
item.checkValidity()
if !item.isValid {
isValid = false
}
}
return (isValid, nil)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment