I config a textView in a UIViewController like following: textView configuration
but when controller viewDidAppear
I found that UITextView's contentSize = {375, 242}
and UITextView can not scroll.
But if i tap the textView, let the textView begin editing (but edit nothing), then i touch the controller's view let textView endEditing, log the textView, this time contentSize = {375, 361}
and UITextView can scroll.
Is anybody know why? Thanks.