かなり単純な問題。cellForRowAtIndexPath
カスタムを追加する必要がありUILabel
ます。だから私は与えられた方法でこれを試します:
UILabel *titleLbl = [[UILabel alloc] init];
//Other properties etc
if (indexPath.row == 0) titleLbl.text = @"1";
else if (indexPath.row == 1) titleLbl.text = @"2";
[cell addSubview:titleLbl];
問題は、テーブルを下にスクロールすると、ラベルが繰り返され、複製され始めることです。
どうすればこれを回避できますか?
ありがとう。