我的单元格中有一个edittext,当我向上滚动或向下滚动时,它将第一个单元格值设置为最后一个单元格,并设置为倒数第二个单元格。我认为这是因为它使细胞出列但我无法解决这个问题。这是我的单元格代码:
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
_myTableView = tableView;
AddTaskTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"addTaskCell" forIndexPath:indexPath];
cell.selectionStyle = UITableViewCellSelectionStyleNone;
AddTaskDetails *task =[self.tasksArray objectAtIndex:indexPath.row];
cell.addHours.delegate = self;
cell.taskDetails.text =task.taskName;
_hoursTextField = cell.addHours;
_hoursTextField.delegate = self;
cell.addHours.tag = indexPath.row;
cell.addDescriptionBtn.tag = indexPath.row;
[cell.addDescriptionBtn addTarget:self action:@selector(didTapAddDescButton:) forControlEvents:UIControlEventTouchUpInside];
[cell.addHours addTarget:self action:@selector(editStart:) forControlEvents:UIControlEventEditingDidBegin];
[cell.addHours addTarget:self action:@selector(editEnd:) forControlEvents:UIControlEventEditingDidEnd];
[cell.addHours addTarget:self
action:@selector(textFieldDidChange:)
forControlEvents:UIControlEventEditingChanged];
if(task.isTextRed)
{
cell.taskDetails.textColor = [UIColor colorWithRed:255 green:0 blue:0 alpha:1.0];
cell.addHours.textColor = [UIColor colorWithRed:255 green:0 blue:0 alpha:1.0];
}
else
{
cell.taskDetails.textColor = [UIColor colorWithRed:0 green:0 blue:0 alpha:1.0];
cell.addHours.textColor = [UIColor colorWithRed:0 green:0 blue:0 alpha:1.0];
}
if(task.isBillable)
{
cell.backgroundColor = [UIColor whiteColor];
}
else
{
cell.backgroundColor = [UIColor lightGrayColor];
}
AddTaskDetails *task_1 =[self.tasksArray objectAtIndex:indexPath.row];
if(task_1.hours>0)
{
NSString *hours = [[NSString alloc]initWithFormat:@"%d",task_1.hours];
cell.addHours.text = hours;
}
else
{
cell.addHours.placeholder = @"0";
}
NSString *hours = [[NSString alloc]initWithFormat:@"Total Hours: %ld",_totalHours];
if(_totalHours<=24)
{
_labelTotalHours.text = hours;
}
return cell;
}
此屏幕截图具有正确的值:
在这张照片中,4是自动分配的错误值,该值也不是数组。
答案 0 :(得分:2)
只是简短的概述,所以你得到答案
UITableView经过高度优化,因此只在内存中保留屏幕上可见的行。现在,所有行单元格都缓存在池中并被重用而不是重新生成。每当用户滚动UITableView时,它会在Pool中添加刚刚隐藏的行,并重新使用它们作为可见行。
所以,现在,回答你的问题
在您的方法cellForRowAtIndexPath -
中始终重置每个索引的值:
对于前。如果您的单元格中有UILabel - 标签,那么在将其设置在cellForRowAtIndexPath中时,您需要为每个条件设置所需的值。如果您希望它为空,请将其设置为&#34;&#34;
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
if(today){
label = "today";
}
else if(yesterday){
label = "yesterday";
}
else{
label = ""; **//this is important**
}
return cell;
}
您的代码中的问题
if(task_1.hours>0)
{
NSString *hours = [[NSString alloc]initWithFormat:@"%d",task_1.hours];
cell.addHours.text = hours;
}
else
{
cell.addHours.text = ""; // YOU NEED TO SET TEXT TO EMPTY AS WELL
cell.addHours.placeholder = @"0";
}
答案 1 :(得分:1)
After Declate cell you put below code `if(cell == nil)
{
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
reuseIdentifier:MyIdentifier] autorelease];
}
else
{
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
reuseIdentifier:MyIdentifier] autorelease];
}
cell.selectionStyle = UITableViewCellSelectionStyleNone;
[cell.contentView clearsContextBeforeDrawing];`