0
我試圖將日期從MMM dd,YYYY轉換爲YYYY-MM-dd。NSDate轉換
NSDateFormatter *importDateFormat = [[NSDateFormatter alloc] init];
[importDateFormat setDateFormat:@"MMM dd, YYYY"];
NSDate *importedDate = [importDateFormat dateFromString:expiresOn.text];
NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init];
[dateFormat setDateFormat:@"YYYY-MM-dd"];
NSString *dateImported = [dateFormat stringFromDate:importedDate];
日期從expiresOn.text(標籤)帶來的是: 2012年10月8日
包含在dateImported轉換後的日期是: 2011-12-25
上午我錯過了什麼?我的日期格式化程序有問題嗎?