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]];