並且即時調用Web服務。在我的xml文件我有這樣嘗試在xcode'm中使用touchXML格式化日期
<a:DateIn>2011-10-28T08:12:58.36+02:00</a:DateIn>
IM一行調用它,它出現在我的模擬器喜歡這樣2011-10-28T08:12:58.36 + 02:00
我在Xcode代碼這樣
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [tableView
dequeueReusableCellWithIdentifier:@"MyIdentifier"];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle
reuseIdentifier:@"MyIdentifier"];
cell.selectionStyle = UITableViewCellSelectionStyleNone;
}
NSDictionary *item = (NSDictionary *)[blogEntries
objectAtIndex:indexPath.row];
cell.textLabel.text = [item objectForKey:@"a:DateIn"];
cell.detailTextLabel.text = [item objectForKey:@"a:Description"];
cell.detailTextLabel.font=[UIFont fontWithName:@"Arial" size:12.0];
return cell;
}
洛斯我希望將日期轉換月:日小時:分鐘
看到我的帖子在這[鏈接](http://stackoverflow.com/questions/7873690/need-help-for-specific-date-format/7874076#7874076)。 – Ilanchezhian
我已經更新了我的答案。試試看是否有效。 – Ilanchezhian
即時消息顯示的實際時間,但我想顯示從DateIn的時間? – user993074