I have an application containing a UITextview that displays static text. I used UITextview to get a scroll of text that is much longer than what UILabel can display. For some reason, the text in a UITextview under iOS 7 does not remain scrollable at the top after the rotation. This works as expected when running under iOS 6.
This can be shown by creating a project with a UITextview that focuses on a storyboard with margins of around 50. Then add constraints that snap the UITextview to the edges of the main view. Make sure the text box contains enough text to trigger scrolling:

, UITextview, . :

- .
, iOS 6. viewWillLayoutSubviews, :
[textView sizeToFit]
[textView layoutIfNeeded]
[textView setContentOffset:CGPointMake(0.0, 0.0)]
[textView scrollRectToVisible:CGRectMake(0.0, 0.0, 1.0, 1.0) animated:NO]
, . - , ?