我想在Array中添加UITableviewCell文本字段中的字符串

时间:2017-03-01 10:42:46

标签: ios arrays swift uitableview

我有自定义单元格,其中有三个文本字段,按钮点击用户可以添加更多单元格。在其他按钮上,我想在数组中创建一组textfields字符串。

1 个答案:

答案 0 :(得分:0)

假设:您每次点击按钮都会添加3 UITextField

您需要array of dictionary

最初的数组将是这样的

arrayOfTextField = [

{
    textField1 = "",
    textField2 = "",
    textField3 = ""
}

]
单击按钮上的

创建如下字典

dictOfTextField = {
    textField1 = "",
    textField2 = "",
    textField3 = ""
}

并在arayOfTextField中添加字典

arrayOfTextField.append(dictOfTextField)