很简单的问题。在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];
问题是当向下滚动我的表格时,标签开始重复和复制。
我怎样才能解决这个问题?
谢谢。