我有一个uitableview
由核心数据填充的。我正在用我需要的结果填充表格,但是我希望每个单元格的标题标题都包含日期。有没有一种简单的方法可以做到这一点,我将如何进行?目前我正在使用标签填充标签,但我希望在每个单元格的标题部分显示它。谢谢你的帮助。
//Convert NSDate to String and show in Tag 12
NSDate *weightDate = [measure valueForKey:@"date"];
NSDateFormatter* df = [[NSDateFormatter alloc]init];
[df setDateFormat:@"dd/MM/yyyy"];
NSString *result = [df stringFromDate:weightDate];
UILabel *label1 = (UILabel *)[cell.contentView viewWithTag:10];
[label1 setText:[NSString stringWithFormat:@"%@", result]];