-4
我有:錯誤日期格式化程序?
//date
Wed Sep 10 19:21:08 +0000 2014
NSString *date=[twt objectForKey:@"created_at"];
NSDateFormatter *df = [ [NSDateFormatter alloc] init] ;
[df setDateFormat:@"EEE MMM d HH:mm:ss Z yyyy"];
NSDate *newdate = [df dateFromString:date];
NSLog(@"%@",date); //good Wed Sep 10 21:13:46 +0000 2014
NSLog(@"%@",newdate);// NULL
的NSDate
返回NULL,當如圖所示的日期字符串。
參見: – zaph 2014-09-10 21:15:55
我已經檢查了[ICU格式化日期和時間(http://userguide.icu-project.org/formatparse/datetime),想不通這裏有什麼問題。 – Curnelious 2014-09-10 21:17:30
來自twitter我得到日期 – Curnelious 2014-09-10 21:21:19