We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The example for setting a validation block is
[self.passwordField setTextValidationBlock:^BOOL(BZGFormField *field, NSString *text) { if (text.length < 8) { field.alertView.title = @"Password is too short"; return NO; } else { return YES; } }];
When I do this however, I get
May the example be outdated?
The text was updated successfully, but these errors were encountered:
Oh, my bad – I haven't gotten around to bumping the version and submitting a new podspec. I'll do that now.
Sorry, something went wrong.
No branches or pull requests
The example for setting a validation block is
When I do this however, I get
May the example be outdated?
The text was updated successfully, but these errors were encountered: