gpt4 book ai didi

ios - 使用 deleteRows 后,becomeFirstResponer() 不会将焦点放在 textField

转载 作者:行者123 更新时间:2023-11-28 07:24:59 24 4
gpt4 key购买 nike

deleteRows(at:with:) 从我的 TableView 中删除任何行后,我无法通过 becomeFirstResponder() 获取可重用自定义单元格中的文本字段以获取焦点>(在调用 insertRows(at:with:) 之后调用)。 becomeFirstResponder() 总是在 cellForRow(at:) 中调用。

此问题总是在 deleteRows(at:with:) 从 TableView 中删除行后开始出现。在删除任何行之前没有问题,becomeFirstResponder() 可以按预期将焦点放在文本字段上。

我做了一些测试来理解为什么在删除一行后会出现这个问题......我的测试显示了一个有趣的差异:

情况 1:删除任何行后(即当 becomeFirstResponder() 返回 false 时),调用 textFieldShouldBeginEditing(_:) < strong>BEFORE cellForRow(at:) 返回。 textFieldDidBeginEditing(_:) 从未被调用。

情况 2:另一方面,在删除任何行之前(即当 becomeFirstResponder() 返回 true 时),textFieldShouldBeginEditing(_:) 被调用 AFTER cellForRow(at:) 返回。正如预期的那样,textFieldDidBeginEditing(_:)textFieldShouldBeginEditing(_:) 之后立即被调用。

问题可能与这种差异有关,但我尝试和研究了很多小时后无法解开这个谜。

related Q&A 中,建议不要从 textFieldDidEndEditing() 中重新加载 tableView。在我的例子中,deleteRows(at:with:) 方法有时从 textFieldDidEndEditing() 中调用,有时从 tableView(_:commit:forRowAt:) (即向左滑动)。所以这并不能解释我的问题。另一个相关的问答可能是 this one .

CustomCell 类中的 getFocus(),从 TableViewController 中的 cellForRow(at:) 调用:

func getFocus() {
if let itemTextField = itemTextField {
itemTextField.delegate = self
itemTextField.isUserInteractionEnabled = true
itemTextField.becomeFirstResponder()
}
}

cellForRow(at:):

override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

let item = items[indexPath.row]
let cell = tableView.dequeueReusableCell(withIdentifier: "CustomCell", for: indexPath) as! CustomCell
cell.setCell(item: item)
cell.delegate = self

if insertingRow == true {
if isTempItem(item: item, indexPath: indexPath) {
cell.getFocus()
} else {
print("isTempItem returned false, no need to give focus.")
}
}

return cell
}

最佳答案

不要在cellForRowAt中调用getFocus,取而代之的是当你插入新行时,你可以滚动到新行并在中调用getFocus willDisplayCell.

希望能帮到你。

关于ios - 使用 deleteRows 后,becomeFirstResponer() 不会将焦点放在 textField,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56843825/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com