如何在ios 8中向同一个indexpath.row添加多个文本字段

时间:2015-04-24 06:24:38

标签: iphone uitableview uistoryboard dynamic-allocation

我想在同一个单元格索引路径上创建一个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;
    }
}

0 个答案:

没有答案