This is a matter of the โselectableโ property of the UITextView .
Check the value of the selected UITextView property in the storyboard editor to set it to YES.
and then in viewWillAppear set this property to NO .
textview.text = @"some text"; textview.selectable = NO;
Bista source share