UITextView
func textViewShouldBeginEditing(_ textView: UITextView) -> Bool {
DispatchQueue.main.async{
//返回一个 UITextPosition 对象,表示文本的末尾位置。
let position = textView.endOfDocument
//创建了一个文本范围(UITextRange)并将其设置为文本视图的 selectedTextRange。该范围的起始和结束位置都设置为 position(即文本的末尾),从而将光标定位在文本的末尾。
textView.selectedTextRange = textView.textRange(from: position, to: position)
}
return true
}
UITextField
func textFieldShouldBeginEditing(_ textField: UITextField) -> Bool {
DispatchQueue.main.async{
//返回一个 UITextPosition 对象,表示文本的末尾位置。
let position = textView.endOfDocument
//创建了一个文本范围(UITextRange)并将其设置为文本视图的 selectedTextRange。该范围的起始和结束位置都设置为 position(即文本的末尾),从而将光标定位在文本的末尾。
textView.selectedTextRange = textView.textRange(from: position, to: position)
}
return true
}