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

After deleteRows used, becomeFirstResponer() doesn't give focus to textField

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

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

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

情况1:删除任意行后(即while becomeFirstResponder() returns false),textFieldShouldBeginEditing(_:)被调用之前 cellForRow(at:) returns。 textFieldDidBeginEditing(_:) 从未被调用。

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

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

, it is suggested not to reload tableView from within textFieldDidEndEditing(). In my case, deleteRows(at:with:) method are sometimes called from within textFieldDidEndEditing() and sometimes called from tableView(_:commit:forRowAt:) (i.e. by swiping to left). So this does not explain my problem. Another related Q&A might be

CustomCell 的 class 中的 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,而不是在插入新行时,您可以滚动到新行并在 willDisplayCell 中调用 getFocus

希望能帮到你。