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
change your property as follows.
in your code..
@property (weak, nonatomic) IBOutlet UITextView *myTextView;
change property attribute as follows:
@property (strong, nonatomic) IBOutlet UITextView *myTextView;
then it'll work fine. i checked it.