Search code examples
objective-cuitextviewtvosapple-tv

TVOS UITextView not scrolling


UITextView in TVOS not scrolling, I can see its contentSize is great then its bounds, I can confirm that scrollEnabled = YES, userInteraction = YES and it is current focused view.


Solution

  • yourtextview.panGestureRecognizer.allowedTouchTypes = @[@(UITouchTypeIndirect)];
    

    Fixed it for me.