UITextView.becomeFirstResponder() triggers scroll animation to selection even when disabling view animations

Here is the code:

UIView.setAnimationsEnabled(false)
let _ = textView.becomeFirstResponder()
UIView.setAnimationsEnabled(true)

Is there a way I can make the text view first responder without triggering an animation, so that I can set a custom scroll offset at the same time?

What does the view hierarchy look like? Begin there.

UITextView.becomeFirstResponder() triggers scroll animation to selection even when disabling view animations
 
 
Q