Survey is a library to simplify the process of creating and validating forms. This library is loosely based on CoreData and Django forms.
- More Validators
- Generate forms from ManagedObject models
- Block based form actions.
To set up, place the Survey project file into your project, link to the libSurvey.a framework and add it as a target dependency, then just #import <Survey/Survey.h> and go to town!
Setting up a form is pretty simple, you just subclass SurveyFormModel and set up properties for the fields you want. Then, in the implementation, set up each field with the properties you want.
// RegisterForm.h
@interface RegisterForm : SurveyFormModel
@property (strong, nonatomic) SurveyField *firstname;
@property (strong, nonatomic) SurveyField *lastname;
@property (strong, nonatomic) SurveyField *email;
@property (strong, nonatomic) SurveyField *password;
@end
// RegisterForm.m
@implementation RegisterForm
-(SurveyField *)firstname
{
SurveyField *field = [SurveyField fieldWithPlaceholder:@"First Name"];
field.isRequired = NO;
field.label = @"First Name";
return field;
}
-(SurveyField *)lastname
{
SurveyField *field = [SurveyField fieldWithPlaceholder:@"Last Name"];
field.isRequired = YES;
field.label = @"Last Name";
return field;
}
-(SurveyField *)email
{
SurveyField *field = [SurveyField fieldWithPlaceholder:@"Email"];
field.isRequired = YES;
field.expression = [[NSRegularExpression alloc] initWithPattern:@"[A-Z0-9a-z._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,4}" options:0 error:nil];
return field;
}
-(SurveyField *)password
{
SurveyField *field = [SurveyField fieldWithPlaceholder:@"Password"];
field.isRequired = YES;
field.isSecure = YES;
return field;
}
Using the form is also pretty simple, you just init the form and then when you want to use it, you just check that it's valid then grab the values you need.
RegisterForm *registerForm = [[RegisterForm alloc] init];
if(registerForm.isValid)
{
NSString *firstname = [registerForm.form valueForField:@"firstname"];
NSString *lastname = [registerForm.form valueForField:@"lastname"];
NSString *email = [registerForm.form valueForField:@"email"];
NSString *password = [registerForm.form valueForField:@"password"];
// Now do something with your new values.
}
Read LICENSE file for more info.