UITextField 起始光标位置错误

UITextField starting cursor position is wrong

我有一个带有一些预编译文本的文本字段。文本字段内的文本在视觉上是右对齐的。当我点击文本字段时,我希望光标位于文本的末尾,这样我就可以准备好编辑文本了。默认情况下,光标位于文本的开头或如果我点击该词,则位于该词的末尾。

我尝试按照其他答案的建议设置 selectedTextRange 属性,但我无法实现结果。我顺便注意到 becomeFirstResponder() 给出了正确的行为。

func textFieldDidBeginEditing(_ textField: UITextField) {
    textField.selectedTextRange =
        textField.textRange(from: textField.endOfDocument, to: textField.endOfDocument)
}

您需要始终从主线程更新您的 UI:

DispatchQueue.main.async {
    textField.selectedTextRange = textField.textRange(from: textField.endOfDocument, to: textField.endOfDocument)
}