私はこのように見える値を持っていNSDate
ます。方法を知りたいので、このように見えましたが、わかりません。2013-03-20
YYYY-MM-dd
reformat
20-March-2013
これは私が試したものですが、null を返します。
NSDate *tempsDate = [tempDic objectForKey:@"date"];
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"ddMMyyyy"];
NSString *textDate = [NSString stringWithFormat:@"%@",[dateFormatter stringFromDate:tempsDate]];
NSLog(@"Date %@",textDate);