我尝试从自定义单元格中的UITextField
检索文本,并将值分配给视图控制器中的self.email
变量。当我在textFieldDidEndEditing
函数中创建断点时,我可以看到textField
的值按预期分配给self.email
,但self.email
中的变量@IBAction doneButtonDidPress
为{ 1}}功能。
问题:为什么self.email
的值更改为nil
?
extension ViewController: UITextFieldDelegate {
func textFieldDidEndEditing(_ textField: UITextField) {
if let text = textField.text {
self.email = text
}
}
func textFieldShouldReturn(_ textField: UITextField) -> Bool {
let cell = self.tableView.cellForRow(at: IndexPath(row: 2, section: 0)) as! AboutCell
cell.textView?.becomeFirstResponder()
return true
}
}
我使用UITableViewController
,这就是我创建单元格的方式:
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
switch indexPath.row {
case 0:
let cell = tableView.dequeueReusableCell(withIdentifier: "profilePhotoCell")! as! ProfilePhotoCell
cell.delegate = self
return cell
case 1:
let cell = tableView.dequeueReusableCell(withIdentifier: "textFieldCell")! as! TextFieldCell
cell.textField.delegate = self
cell.textLabel?.text = "Email"
return cell
default:
let cell = tableView.dequeueReusableCell(withIdentifier: "aboutCell")! as! AboutCell
cell.textView.delegate = self
return cell
}
}
@IBAction
功能:
@IBAction func doneButtonDidPress(_ sender: Any) {
print(self.email) // returns nil
}
答案 0 :(得分:1)
解决方案是将partial(f, a) = curry(f)(a)
放入self.tableView.endEditing(true)
。
答案 1 :(得分:0)
在didendediting中,您没有刷新tableview的数据源。您的tableview数据源将是一个数组。您需要将textfield值分配给相应索引处的数组
在textFieldDidEndEditing
,
var myCell:UITableViewCell
var indexPath: NSIndexPath
myCell = (textField.superview?.superview as! UITableViewCell)
indexPath = table_view.indexPathForRowAtPoint(myCell.center)!
在此索引路径行,将textfield的值分配给tableview数据源(数组)
self.tableview_list.objectAtIndex(indexPath.row).setObject(self.email, forKey: "XYZ")
并且还仅在该特定索引处重新加载tableview。
答案 2 :(得分:0)
在
cellForRowAtIndexPath
为您textfield
分配标记并设置UITextfieldDelegate
注意这是tableview必须使用textfield Name和RollNo的示例
var txtName:String = ""
var txtRollNo:String = ""
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let YourCell = tableView.dequeueReusableCellWithIdentifier("YourTableViewCellIdentifier") as! YourTableViewCell
YourCell.txtField?.text = itemsData as? String
YourCell.txtField.delegate = self
YourCell.txtField.tag = (indexPath.section*10)+indexPath.row
if(indexPath.section == 0){
switch indexPath.row {
case 0:
YourCell.txtField.placeholder = "Enter Name "
if (self.txtName != ""){
YourCell.txtField.text = self.txtName
}
break;
case 1:
YourCell.txtField.placeholder = "Enter Rollno "
if (self.txtRollNo != ""){
YourCell.txtField.text = self.txtRollNo
}
break;
}
}
return YourCell
}
func textFieldDidBeginEditing(textField: UITextField) {
print(textField.tag)
if textField.tag == 0 {
self.txtName = textField.text
}else if textField.tag == 1{
self.txtRollNo = textField.text
}
}
func textFieldDidEndEditing(textField: UITextField) {
print(textField.tag)
if textField.tag == 0 {
self.txtName = textField.text
}else if textField.tag == 1{
self.txtRollNo = textField.text
}
}
func printValue(){
print("\(self.txtName)")
print("\(self.txtRollNo)")
}
希望这对你有所帮助。