这是我的数据字符串:
<pubDate>Sun, 24 Mar 2013 00:42:13 +0200</pubDate>
我想将其转换为“Sun, 24/3/13, 00:42”并将日期名称翻译为希伯来语。
到目前为止,这是我的代码:
currentPubDate = [self.xmlParser.pubDate objectAtIndex:indexPath.row];
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc]init];
[dateFormatter setTimeStyle:NSDateFormatterNoStyle];
[dateFormatter setDateStyle:NSDateFormatterMediumStyle];
NSLocale *loacle = [[NSLocale alloc]initWithLocaleIdentifier:@"he_IL"];
[dateFormatter setLocale:loacle];
[dateFormatter setDateFormat:@"EEE, dd MMM yyyy HH:mm:ss Z"];
[dateFormatter dateFromString:currentPubDate];
我应该怎么做才能让它工作?我已经阅读了一些指南,但没有成功。