我無法理解如何使用委託方法保存表格單元格中包含的文本字段的文本值。我正在使用一個單獨的.xib文件,它包含表格單元格的文本字段。下面是使用cellForRowAt indexpath的代碼,但我不確定如何在文本字段和包含此代碼的swift文件之間進行通信。使用委託方法保存自定義單元格文本字段
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let currentCellDescriptor = getCellDescriptorForIndexPath(indexPath)
if currentCellDescriptor["cellIdentifier"] as! String == "idEntranceFee" {
func textFieldDidBeginEditing(textField: UITextField!) {
}
}