When I have text that does not fill the UITextView, it is scrolled to the top working as intended. When there is more text than will fit on screen, the UITextView is scrolle
If you don't wanna mess with constraints:
override func updateViewConstraints() { super.updateViewConstraints() } override func viewDidLayoutSubviews() { self.textLabel.setContentOffset(CGPointZero, animated: false) }