Skip to content

Instantly share code, notes, and snippets.

@boboboa32
Created October 26, 2012 06:34
Show Gist options
  • Save boboboa32/3957243 to your computer and use it in GitHub Desktop.
Save boboboa32/3957243 to your computer and use it in GitHub Desktop.
validateEmail
- (BOOL)validateEmail:(id *)value error:(NSError **)error {
if (self.email && ![self.email isValidEmailAddress] && error) {
*error = [NSError errorWithDomain:@"MyErrorDomain" code:1];
return NO;
}
return YES;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment