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
I tried my code and it worked properly
IBOutlet UITextView *tv; //---------Enable button action. -(IBAction)enable:(id)sender { tv.scrollEnabled=YES; } //---------Disable button action. -(IBAction)disable:(id)sender { tv.scrollEnabled=NO; }
try your code once more in device.