textFieldDidEndEditing 未在 swift 中调用
Posted
技术标签:
【中文标题】textFieldDidEndEditing 未在 swift 中调用【英文标题】:textFieldDidEndEditing is not called in swift 【发布时间】:2021-02-06 14:46:24 【问题描述】:我的表格视图单元格中有一个文本字段。当我输入内容并单击提交按钮时,我想将文本保存在结构中以在其他视图控制器中使用它。但问题是,当我第一次单击提交按钮时,我的 textFieldDidEndEditing 函数没有调用,所以我无法将值分配给结构。
我的代码是-
func textFieldDidEndEditing(_ textField: UITextField)
let position: CGPoint = textField.convert(CGPoint.zero, to: self.tableView)
if let indexPath = self.tableView.indexPathForRow(at: position)
if let cell: InsuranceInformationTableViewCell = self.tableView.cellForRow(at: indexPath) as? InsuranceInformationTableViewCell
if textField == cell.policyHolderFullNameTextField
insuranceModel.policuHolderFullName = textField.text
提交按钮操作-
@IBAction func SubmitButtonAction(_ sender: UIButton)
if (insuranceModel.policuHolderFullName == nil)
showAlert(withTitle: "Data Missing", withMessage: "Policy holder fullName field cannot be empty")
return
let encoder = JSONEncoder()
if let encoded = try? encoder.encode(insuranceModel)
let defaults = UserDefaults.standard
defaults.set(encoded, forKey: "SavedInsuranceInformation")
self.navigationController?.pushViewController(StockAndBillPreviewViewController.instantiateStockAndBillPreviewViewController(), animated: true)
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
case TableSection.insuranceType.rawValue:
guard let cell = tableView.dequeueReusableCell(withIdentifier: "InsuranceInformationTableViewCell", for: indexPath) as? InsuranceInformationTableViewCell else
return UITableViewCell()
cell.policyHolderFullNameTextField.delegate = self
当我单击提交按钮时,它会向我显示错误消息。 在这里我不想使用“UITextField,shouldChangeCharactersIn range”。因为我的表格视图单元格中有很多文本字段,因为它是一种医疗表格。
如何解决这个问题?谁能帮帮我?
【问题讨论】:
在按钮操作 self.view.endEditing(true) 中添加这一行 当您点击按钮时,可能 textField 不会退出响应者。这就是为什么我更喜欢创建一个连接到两个事件的特定 IBAction:退出时结束和编辑结束结束。 【参考方案1】:1. 可能发生这种情况的最常见原因之一是您可能没有分配文本视图委托方法。 因此,只需将“UITextViewDelegate”添加为符合您的表格视图单元格,然后在情节提要中设置委托。 2.如果您已经完成了第一种方法,但仍然无法正常工作,那么您可以按照最基本的方法在单击提交按钮时获取文本字段中的任何内容。 在您的代码中的任何时候,您都可以通过“textfield.text”访问文本字段中的文本, 只需创建文本字段的出口并在提交按钮中使用 youroutletname.text 以保存在结构中。
【讨论】:
【参考方案2】:我不确定在这种情况下是否调用了 textFieldDidEndEditing。我使用以下方法:
(1) 使用 UITextView 定义自定义单元格并为 UITextViewDelegate textViewDidChange 方法设置单元格委托
(2) 创建自定义单元格委托协议以将文本更改发送到 TableViewController
(3) 将 TableViewController 委托给自定义单元格并记录控制器内 UITextView 文本的所有更改
【讨论】:
以上是关于textFieldDidEndEditing 未在 swift 中调用的主要内容,如果未能解决你的问题,请参考以下文章
textFieldDidEndEditing 触发“为时已晚”
在文本字段中插入一个字符后启用完成按钮: textFieldDidEndEditing: 或 textFieldShouldBeginEditing: 或?
当调用 textFieldDidEndEditing 时,应用程序冻结