+(BOOL)validateWithMobile:(NSString *)mobile
{
NSString * phone =@"^1([3-9]\\d{9}$)";
NSPredicate *phoneTest = [NSPredicate predicateWithFormat:@"SELF MATCHES %@",phone];
return[phoneTest evaluateWithObject:mobile];
}
+(BOOL)validateWithMobile:(NSString *)mobile
{
NSString * phone =@"^1([3-9]\\d{9}$)";
NSPredicate *phoneTest = [NSPredicate predicateWithFormat:@"SELF MATCHES %@",phone];
return[phoneTest evaluateWithObject:mobile];
}