在 UITableViewCell 内编辑 UITextField 失败的问题通常是由于 UITableView 的重用机制引起的。当你滚动 UITableView 时,为了提高性能和减少内存占用,UITableView 会将不再显示的单元格进行重用。这就导致了 UITextField 的状态被错误地更新或者重置。
为了解决这个问题,你可以采取以下步骤:
以下是一个简单的示例代码:
class CustomTableViewCell: UITableViewCell, UITextFieldDelegate {
@IBOutlet weak var textField: UITextField!
override func awakeFromNib() {
super.awakeFromNib()
textField.delegate = self
NotificationCenter.default.addObserver(self, selector: #selector(textFieldDidChange(_:)), name: UITextField.textDidChangeNotification, object: textField)
}
override func prepareForReuse() {
super.prepareForReuse()
NotificationCenter.default.removeObserver(self, name: UITextField.textDidChangeNotification, object: textField)
}
@objc func textFieldDidChange(_ notification: Notification) {
guard let textField = notification.object as? UITextField else { return }
// 处理文本更改事件
}
func textFieldShouldReturn(_ textField: UITextField) -> Bool {
// 处理键盘的回车键事件
return true
}
}
在 UITableView 的代理方法中设置 UITextField 的代理为当前 UITableViewCell:
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "CustomTableViewCell", for: indexPath) as! CustomTableViewCell
cell.textField.tag = indexPath.row
cell.textField.delegate = cell
return cell
}
这样,你就可以在 UITableViewCell 内编辑 UITextField 而不会遇到失败的问题。
领取专属 10元无门槛券
手把手带您无忧上云