An easy way to do this is to use section headings. You can use a single line ( @"%@: %@", date, total ) or a shell view with a label on the left for the date and right for the total.
-(NSString *) tableView:(UITableView *)tv titleForHeaderInSection:(NSInteger)s { NSString *dateString = [self dateStringForSection:s]; float total = [self totalForSection:s]; return [NSString stringWithFormat:@"%@: %0.2f", dateString, total]; }
or
-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section { return [self wrappedHeaderForSection:s]; }
Of course, you will need to implement dateStringForSection: or wrappedHeaderForSection:
Kevin source share