我有一个包含多个单元格的uitableview。其中包含文本字段,显示当我在文本字段上输入文本并滚动tableview时输入的文本正在擦除 我的代码是
static NSString *CellIdentifier = @"Cell";
ComplaintsCustomCell *cell=(ComplaintsCustomCell*)[tableView dequeueReusableCellWithIdentifier:nil];
if(cell==nil){
NSArray *topLevelObjects = [[NSBundle mainBundle] loadNibNamed:@"ComplaintsCustomCell" owner:self options:nil];
for(id currentObject in topLevelObjects){
if([currentObject isKindOfClass:[UITableViewCell class]]){
cell = (ComplaintsCustomCell *) currentObject;
break;
}
}
}
cell.selectionStyle=UITableViewCellSelectionStyleNone;
NSDictionary *dict=[array1 objectAtIndex:indexPath.row];
cell.complaintID_label.text=[dict valueForKey:@"ProblemName"];
if(cell.notesView!=nil)
cell.notesView.text=[dict valueForKey:@"Notes"];
[cell.notesView setTag:indexPath.row +6000];
cell.durationFld.text=[dict valueForKey:@"Duration"];
[cell.durationFld setTag:indexPath.row + 5000];
cell.durationFld.delegate=self;
答案 0 :(得分:0)
您的类还需要成为每个文本字段的委托,检测每个文本更改并更新关联的模型对象(您的字典数组)。