0

I've put my UITextView into UITableViewCell but i can't understand - why scroll always goes to the top?..I can't type properly because i don't see where am i type..

[textView scrollRangeToVisible:NSMakeRange([textView.text length]-1, 1)]; textView.selectedRange = NSMakeRange(textView.text.length - 1, 0); This both solution don't work in my case...

1 Answers1

0

It's an Apple UI automatic behavior if the UITextView is too small. Here is a solution : How to stop UITextView from scrolling up when entering it

Community
  • 1
  • 1
Julien
  • 9,312
  • 10
  • 63
  • 86