+ (NSDate *) dateFromFomate:(NSString *)datestring formate:(NSString*)formate {
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
// 真机必须指定local否则返回null
NSLocale *locale = [[[NSLocale alloc] initWithLocaleIdentifier:@"en_US"] autorelease];
[formatter setLocale:locale];
[formatter setDateFormat:formate];
NSDate *date = [formatter dateFromString:datestring];
return date;
}