Last active
August 29, 2015 14:00
-
-
Save wess/11288919 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@implentation UserForm | |
- (SurveyTextField *)username | |
{ | |
return SurveyDefineTextField(^(SurveyTextField *field) { | |
field.placeholder = @"username"; | |
}); | |
} | |
// OR | |
@dynamic username; | |
- (void)setupFieldUsername:(SurveyTextField *field) | |
{ | |
field.placeholder = @"username"; | |
field.onError = ^{ | |
field.backgroundColor = [UIColor redColor]; | |
}; | |
} | |
// OR | |
+ (void)username:(SurveyTextField *field) | |
{ | |
field.placeholder = @"username"; | |
} | |
@end |
jeremytregunna
commented
Apr 25, 2014
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment