The FormBuilder is a library to create generic iOS 7/8 screens the easy way. With it's block based syntax and wide possibilities for customization it's fun to create forms.
- Easy syntax - with the block syntax your code is well structured and easy to understand
- Predefined Styles - get a seamless iOS 7/8 feeling without writing one line of styling code
- Validation - use validation handling and error message management out of the box
- Customizable - change many defaults with UIAppearance or configure each element individually
- Example app - get an overview over all posibilities of the lib and see how to get the best out of it
This short overview of the structure written in objective-c-pseudo-code should give you an idea of how to work with FormBuilder.
@class YourTableViewController : PAYFormTableViewController
- loadStructure: tableBuilder {
[tableBuilder addSection:^(sectionBuilder){
[sectionBuilder addRow]
[sectionBuilder addRow]
}]
[tableBuilder addSection:^(sectionBuilder){
[sectionBuilder addRow]
}]
}
In order to create a form screen, you have to inherit from the PAYFormTableViewController
and implement the loadStructure:
method. All of your configuration should take place in this method.
#import "PAYFormBuilder.h"
@interface YourViewController : PAYFormTableViewController
@end
#import "YourViewController.h"
@implementation YourViewController
- (void)loadStructure:(PAYFormTableBuilder *)tableBuilder {
// Build your form here
}
@end
With the tableBuilder
you are able to add sections to the form and do some form-wide configuration. To add sections you use the following method or one of its convenience counter parts.
- (PAYFormSection *)addSectionWithName:(NSString *)name
labelStyle:(PAYFormTableLabelStyle)style
headerBlock:(void(^)(PAYFormHeader *))headerBlock
contentBlock:(void(^)(PAYFormSectionBuilder *)contentBlock
The most important parameter is the contentBlock
which is defined as ^(PAYFormSectionBuilder *sectionBuilder)
. In this block, you are able to add fields, buttons and more (see row section).
With the sectionBuilder
you have a factory object to create a variety of different row types. There are predefined methods to create:
- text fields
- text views
- buttons
- button groups (list of connected buttons)
- switches
But there is also a generic addView:
method you could call on the sectionBuilder
where you get an empty PAYFormView
, which only holds a table view cell you could configure on your own. Please note, that for all row types there are factory methods where you could pass a configureBlock
, so you could always change them the way you like.
In the library there are two ways of error handling. Both are based on the error codes of NSError
. For the builtin validation functions, these are listed in the PAYErrorCodes.h
file. For your custom validations, you define them when throwing an error.
- Custom: Just set the
formFailBlock
of thePAYFormBuilder
. You get notified when the user finished the form with errors. To distinguish between different errors use the error code of theNSError
. - Automatic: By default, the automatic error handling is activated, which shows an error alert to the user when he made a mistake. You configure this error handler in the following way:
-
Call
setErrorMessage:forErrorCode:
on- the
PAYFormDefaultErrorHandler
class - on the
PAYFormView
class or of one of its subclasses (PAYFormField
,PAYFormButton
, ...) - on instances of the
PAYFormView
class or of one of its subclasses
The rule of thumb for the priority of the error messages is: the more specific a class/instance is, the higher the priority. Instances have a higher priority than classes. The error messages are of the type
PAYFormErrorMessage
. Look at the initializer of the class for different ways of error message creation. - the
-
Call
setButtonText:
on thePAYFormDefaultErrorHandler
class to configure the button that dismisses the alert. This step is required.
-
To create a registration form is a common task in app development, so it is here used as example to show some of the possiblities of the PAYFormBuilder. To get an overview of all features, please run the example app.
#import <UIKit/UIKit.h>
#import "PAYFormBuilder.h"
@interface PAYRegistrationFormViewController : PAYFormTableViewController
@end
#import "PAYRegistrationFormViewController.h"
@interface PAYRegistrationFormViewController ()
@property (nonatomic, retain) PAYFormSingleLineTextField *userNameField;
@property (nonatomic, retain) PAYFormSingleLineTextField *passwordField1;
@property (nonatomic, retain) PAYFormSingleLineTextField *passwordField2;
@property (nonatomic, retain) PAYFormSingleLineTextField *streetTextField;
@property (nonatomic, retain) PAYFormSingleLineTextField *postalCodeTextField;
@property (nonatomic, retain) PAYFormSingleLineTextField *cityTextField;
@property (nonatomic, retain) PAYFormButtonGroup *countryButtonGroup;
@property (nonatomic, retain) PAYFormSwitch *formSwitch;
@end
@implementation PAYRegistrationFormViewController
- (void)loadStructure:(PAYFormTableBuilder *)tableBuilder {
[tableBuilder addSectionWithName:nil
labelStyle:PAYFormTableLabelStyleNone
contentBlock:^(PAYFormSectionBuilder *sectionBuilder) {
self.userNameField = [sectionBuilder addFieldWithName:@"Username" placeholder:@"your username"
configureBlock:^(PAYFormSingleLineTextField *formField) {
formField.required = YES;
formField.minTextLength = 4;
}];
self.passwordField1 = [sectionBuilder addFieldWithName:@"Password" placeholder:@"your password"
configureBlock:^(PAYFormSingleLineTextField *formField) {
[formField activateSecureInput];
}];
self.passwordField2 = [sectionBuilder addFieldWithName:@"Password 2"
placeholder:@"repeat your password"
configureBlock:^(PAYFormSingleLineTextField *formField) {
[formField activateSecureInput];
}];
}];
[tableBuilder addSectionWithName:@"Country"
labelStyle:PAYFormTableLabelStyleSimple
contentBlock:^(PAYFormSectionBuilder *sectionBuilder) {
self.countryButtonGroup = [sectionBuilder addButtonGroupWithMutliSelection:NO
contentBlock:^(PAYFormButtonGroupBuilder *^buttonGroupBuilder) {
NSArray *countries = @[
@[@"United States", @"usa"],
@[@"Germany", @"de"],
@[@"Spain", @"es"]
];
for (NSArray *country in countries) {
[buttonGroupBuilder addOption:country[1]
withText:country[0]
icon:[UIImage imageNamed:country[1]]];
}
[buttonGroupBuilder select:@"usa"];
}];
[self.countryButtonGroup select:YES value:@"usa"];
}];
[tableBuilder addSectionWithName:@"Address"
labelStyle:PAYFormTableLabelStyleSimple
contentBlock:^(PAYFormSectionBuilder *sectionBuilder) {
self.streetTextField = [sectionBuilder addFieldWithName:@"Street" placeholder:@"your street"
configureBlock:^(PAYFormSingleLineTextField *formField) {
formField.required = YES;
formField.expanding = YES;
}];
self.postalCodeTextField = [sectionBuilder addFieldWithName:@"Postal code"
placeholder:@"your postal code"
configureBlock:^(PAYFormSingleLineTextField *formField) {
formField.required = YES;
formField.cleanBlock = ^id(PAYFormField *formField, id value) {
NSString *strValue = value;
return [strValue stringByReplacingOccurrencesOfString:@" "
withString:@""];
};
}];
self.cityTextField = [sectionBuilder addFieldWithName:@"City" placeholder:@"your city"
configureBlock:^(PAYFormSingleLineTextField *formField) {
formField.required = YES;
}];
}];
[tableBuilder addSectionWithName:@"Terms and Conditions"
contentBlock:^(PAYFormSectionBuilder *sectionBuilder) {
self.formSwitch = [sectionBuilder addSwitchWithName:@"Accept"
configureBlock:^(PAYFormSwitch *formSwitch) {
formSwitch.required = YES;
[formSwitch setErrorMessage:[PAYFormErrorMessage errorMessageWithTitle:@"Accept"
message:@"Please accept the terms and conditions to continue"]
forErrorCode:PAYFormMissingErrorCode];
}];
}];
tableBuilder.finishOnLastField = YES;
tableBuilder.selectFirstField = YES;
tableBuilder.validationBlock = ^NSError *{
if (![self.passwordField1.value isEqualToString:self.passwordField2.value]) {
return [NSError validationErrorWithTitle:@"Password wrong"
message:@"Please enter the same password again"
control:self.passwordField2];
}
return nil;
};
tableBuilder.formSuccessBlock = ^{
NSString *msg = [NSString stringWithFormat:@"Well done, %@. Here your cleaned postal code: %@. Country code: %@",
self.userNameField.value, self.postalCodeTextField.cleanedValue, self.countryButtonGroup.value];
UIAlertView *alertView = [[UIAlertView alloc]initWithTitle:@"Success"
message:msg
delegate:nil
cancelButtonTitle:@"Ok"
otherButtonTitles: nil];
[alertView show];
};
}
@end
CocoaPods is the recommended way to add PAYFormBuilder to your project.
- Add a pod entry for PAYFormBuilder to your Podfile
pod 'PAYFormBuilder'
. - Install the pod(s) by running
pod install
. - Include PAYFormBuilder wherever you need it with
#import "PAYFormBuilder.h"
.
- Add the repository as a git submodule to your git-tracked project.
- Drag and drop the PAYFormBuilder directory from the archive in your project navigator. Make sure to select Copy items when asked if you extracted the code archive outside of your project.
- Include PAYFormBuilder wherever you need any component with
#import "PAYFormBuilder.h"
.
- Drag and drop PAYFormBuilder.xcodeproj in your project navigator.
- Select your target and go to the Build Phases tab. In the Link Binary With Libraries section select the add button. On the sheet find and add libPAYFormBuilder.a.
- Add Target PAYFormBuilder to your Target Dependencies list.
import <PAYFormBuilder/PAYFormBuilder.h>
wherever you want to use the components. You could add it to your Prefix header file, if you want.
- iOS 7+
- ARC
- BlocksKit
- libextobjc
- SZTextView