Since your UIScrollView is doing the scrolling and not the UITextView, myUITextView can't have a fixed height.
Use:
Code:
myUITextView.text = someString;
CGRect frame = myUITextView.frame;
frame.size.height = myUITextView.contentSize.height;
myUITextView.frame = frame;