我有一个 iOS rss feed 应用程序,它使用 xml 解析器来显示标题和日期,问题在于日期,它使用这种方法:
`if ([元素 isEqualToString:@"title"])
{
[标题附加字符串:字符串];
}
else if ([element isEqualToString:@"pubDate"])
{
[日期追加字符串:字符串];
}
`
& 在我的 ViewController 中,我使用了这个方法来显示日期:我使用了名为 rssdate 的 UILbe,我使用了这个方法
rssDate.text = [[self.parseResults objectAtIndex:indexPath.row]objectForKey:@"pubDate"];
[cell.contentView addSubview:rssDate];
但日期以这种格式显示:@"Tue, 02 Apr 2013 18:54:26 +0000";
我如何更改这种格式并像这样设置日期格式:日期标签:@“yyyy/MM/dd hh:mm a”