我想在同一个单元格索引路径上创建一个10文本字段,我该怎么做,从它们获取值,我想在故事板中动态地执行此操作,任何人都可以建议我如何做到这一点。
if (cell != nil) {
cell = [[tableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
for (int i=indexPath.row ;i< [self.dataArray count];i++) {
UITextField *valueTextField = [[UITextField alloc] initWithFrame:CGRectMake(8,10,88,21)];
valueTextField.tag = indexPath.row;
[valueTextField borderStyle];
valueTextField.backgroundColor =[UIColor grayColor];
valueTextField.delegate = self;
valueTextField.placeholder=@"Placeholder";
[cell.contentView addSubview:valueTextField];
cell.editingAccessoryType = YES;
}
}