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.
前のテキストの最後にテキストビューにテキストを入力したいので、任意の位置でテキストビューをクリックすると、カーソル位置がテキストビューの前のテキストの最後になるはずです。
ありがとう。
NSUInteger length = self.textView.text.length; self.textView.selectedRange = NSMakeRange(length, 0); [textView setContentOffset:CGPointMake(0, length) animated:YES];
beginEditing で使用します。