标签: ios uitextview
当UITextView的内容太多时,光标的位置在中间而不是在开头。我想从头开始,而不是从中间开始。
UITextView
答案 0 :(得分:0)
试试这个[yourTextView setSelectedTextRange:[yourTextView textRangeFromPosition:requiredCursorPosition toPosition:requiredCursorPosition]];
[yourTextView setSelectedTextRange:[yourTextView textRangeFromPosition:requiredCursorPosition toPosition:requiredCursorPosition]];
更多参考: https://stackoverflow.com/a/11532718/3743322