validation

if (textField == self.fromLocationTF)
{
NSString *newString = [_fromLocationTF.text stringByReplacingCharactersInRange:range withString:string];
NSString *abnRegex = @"[A-Za-z]+";
NSPredicate *abnTest = [NSPredicate predicateWithFormat:@"SELF MATCHES %@", abnRegex];
return ([abnTest evaluateWithObject:newString] || newString.length == 0);
}
Previous
Next Post »