Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在上一个文本的末尾在 textview 中输入文本,因为当我在任何位置单击 textview 时,光标位置应该是文本视图中上一个文本的结尾。
谢谢。
NSUInteger length = self.textView.text.length; self.textView.selectedRange = NSMakeRange(length, 0); [textView setContentOffset:CGPointMake(0, length) animated:YES];
在开始编辑中使用它。