- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 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/
在 deleteRows(at:with:) 从我的 TableView 中删除任何行后,我无法通过 becomeFirstResponder() 获取可重用自定义单元格中的文本字段以获取焦点>(在调
我是一名优秀的程序员,十分优秀!