我在将Date转换为String时遇到问题,对于UILabel
示例代码:
//format date
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"dd-MM-yyyy"];
NSString *artDate = [dateFormatter stringFromDate:item.pubDate];
NSLog(@"%@", item.pubDate); // Output going right Fri, 21 Jun 2013 17:45:20 +0300
NSLog(@"%@", artDate); // string getting null
当它从NSDate格式转换为字符串时,我总是在这里得到null。如果我把而不是我的var item.pubDate当前日期[NSDate日期]全部正常工作
任何帮助表示赞赏
答案 0 :(得分:0)