Validation Library for IOS apps
Validation for:
email address,
required text field,
minimum length,
maximum length,
letters and space only.
//====== Initialize The Validation Library
validation *validate=[[validation alloc] init];
//====== Pass In the textField and desired textFieldName for each validation method
[validate Email:self.email FieldName:@"Email Address"];
[validate Required:self.email FieldName:@"Email Address"];
[validate Required:self.password FieldName:@"Password"];
[validate MaxLength:12 textField:self.password FieldName:@"User Password"];
[validate isValid];
Check out the xCode sample project for this validation plugin.
Email : arpiderm@gmail.com