Making a UITextView not editable by the user
[aboutStable setUserInteractionEnabled:NO]
should do it
and if you still need scrolling:
aboutStable.editable = NO;
aboutStable.editable = NO;
should work
[aboutStable setUserInteractionEnabled:NO]
should do it
and if you still need scrolling:
aboutStable.editable = NO;
aboutStable.editable = NO;
should work