Skip to content

Instantly share code, notes, and snippets.

@Arrlindii
Created August 21, 2018 17:49
Show Gist options
  • Select an option

  • Save Arrlindii/55e145fbf0d5eb72d8d707225e3bf26e to your computer and use it in GitHub Desktop.

Select an option

Save Arrlindii/55e145fbf0d5eb72d8d707225e3bf26e to your computer and use it in GitHub Desktop.
extension UITextField {
func validatedText(validationType: ValidatorType) throws -> String {
let validator = VaildatorFactory.validatorFor(type: validationType)
return try validator.validated(self.text!)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment