dateFromString возвращает nil

Это мой NSString ,

myDate : 2011-06-07 11:23:47  0000

И это код,

NSTimeZone *currentDateTimeZone = [NSTimeZone defaultTimeZone];
NSDateFormatter *currentDateFormat = [[NSDateFormatter alloc]init];
[currentDateFormat setTimeZone:currentDateTimeZone];
[currentDateFormat setDateFormat:@"yyyy-MM-dd HH:mm:ss Z"];
NSDate *tempDate = [currentDateFormat dateFromString:second];

Еще tempDate получает значение ноль .
Может ли кто-нибудь помочь?

5
задан EmptyStack 7 June 2011 в 12:38
поделиться