我想在每个单元格中创建一个包含文本字段的表格视图,
我在swift文件中有一个自定义类:
import UIKit
public class TextInputTableViewCell: UITableViewCell{
@IBOutlet weak var textField: UITextField!
public func configure(#text: String?, placeholder: String) {
textField.text = text
textField.placeholder = placeholder
textField.accessibilityValue = text
textField.accessibilityLabel = placeholder
}
}
然后在我的ViewController中我有
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell{
let cell = tableView.dequeueReusableCellWithIdentifier("TextInputCell") as! TextInputTableViewCell
cell.configure(text: "", placeholder: "Enter some text!")
text = cell.textField.text
return cell
}
效果很好:
但是当用户在文本字段中输入文本并按下按钮时我想将每个文本字段的字符串存储在一个数组中。 我试过
text = cell.textField.text
println(text)
但它没有打印就像是空的
我怎样才能让它发挥作用?
答案 0 :(得分:13)
在您的视图中,控制器成为UITextFieldDelegate
查看控制器
class ViewController: UIViewController, UITableViewDataSource, UITableViewDelegate, UITextFieldDelegate {
var allCellsText = [String]()
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("cell", forIndexPath: indexPath) as! CustomTableViewCell
cell.theField.delegate = self // theField is your IBOutlet UITextfield in your custom cell
cell.theField.text = "Test"
return cell
}
func textFieldDidEndEditing(textField: UITextField) {
allCellsText.append(textField.text)
println(allCellsText)
}
}
这将始终将textField中的数据附加到allCellsText数组。
答案 1 :(得分:2)
创建变量
var arrayTextField = [UITextField]()
在func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell{}
添加
self.arrayTextField.append(textfield)
返回单元格之前,之后使用
显示值for textvalue in arrayTextField{
println(textvalue.text)
}
答案 2 :(得分:1)
这个方法是初始化单元格,你没有模型来保存这个数据,所以
text = cell.textfield.text
什么都没有!
你可以在viewcontroller中初始化var textString
,继承UITextFieldDelegate
optional func textFieldDidEndEditing(_ textField: UITextField)
{
textString = _textField.text
}
optional func textFieldShouldReturn(_ textField: UITextField) -> Bool{
return true
}
和cell.textField.text = textString
答案 3 :(得分:0)
因此,这是使用建议使用textfield数组的方法。它使用文本字段的标签来确保滚动时不会多次添加。
// Assumes that you have a label and a textfield as a part of you tableViewCell
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
guard let cell = tableView.dequeueReusableCell(withIdentifier: "cell") as? BodyStatsTableViewCell else {
return UITableViewCell()
}
cell.rowLabel.text = bodyTableArray[indexPath.row].rowTitle
let tagValue = indexPath.row + 100
var newRow = true
for textvalue in arrayTextField{
if textvalue.tag == tagValue {
newRow = false
}
}
if newRow {
cell.rowTextField.tag = tagValue
self.arrayTextField.append(cell.rowTextField)
cell.rowTextField.text = bodyTableArray[indexPath.row].rowValue
}
return cell
}
//然后,当要保存到标记中时,您可以获取值-100将为要更新的数组索引值
对于arrayTextField中的textvalue { 打印(textvalue.text) }