I create a demo for checking UITextView scrollEnabled. It only contains 1 UITextView and 2 button enable and disable scroll
UITextView scrollEnabled
UITextView
I test on
you need to layout your views after enabling or disabling scroll view in your view.
use viewWillLayoutSubviews/layoutIfNeeded methods.
Please follow below steps simply self.myTextView.scrollEnabled = NO; self.myTextView.userInteractionEnabled = YES; self.myTextView.scrollEnabled = YES;