I\'ll get right to it. I have a UItextView placed in my view that when needs to scroll to see all the text (when a lot of text is present in the textView) the t
UItextView
In Swift 2
You can use this to make the textView start from the top:
override func viewDidLayoutSubviews() { super.viewDidLayoutSubviews() myTextView.setContentOffset(CGPointZero, animated: false) }
Confirmed working in Xcode 7.2 with Swift 2