Skip to content

Instantly share code, notes, and snippets.

@akisute
Last active December 30, 2015 18:49
Show Gist options
  • Save akisute/7869766 to your computer and use it in GitHub Desktop.
Save akisute/7869766 to your computer and use it in GitHub Desktop.
Concept code for UITextField delegate settings
- (void)viewDidLoad
{
[super viewDidLoad];
self.textField.delegate = [AKTextFieldDelegateObject delegateObjectWithTraits:@[
[AKTextFieldDelegateTrait minLength:4],
[AKTextFieldDelegateTrait minLength:16],
[AKTextFieldDelegateTrait format:@"^[a-zA-Z0-9_]+$"]
]];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment