我想創建一個像iPhone上的Notes應用程序中的TableViewCell。在左邊的標題和右邊的時間在披露者indecator旁邊。NSDateFormatter
一個看起來像這樣的tableView。我知道我有我怎麼會動的細節標籤頂端旁邊的披露indecator使用這樣的事情
NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init];
[dateFormat setDateFormat: @"HH:mm zz"];
NSDate *dateTmp;
dateTmp = [[self.Notes objectAtIndex:indexPath.row ]objectForKey:@"CDate"];
cell.detailTextLabel.text = [dateFormat stringFromDate: dateTmp];
?