Skip to content

arpi6/validateIt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

validateIt

Validation Library for IOS apps

Options

Validation for:
email address,
required text field,
minimum length,
maximum length,
letters and space only.

Examples

//====== 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];

Usage

Check out the xCode sample project for this validation plugin.

Contact

Email : arpiderm@gmail.com

About

Validation Library for IOS apps

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published