Reputation: 14477
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.
Upvotes: 5
Views: 951
Reputation: 106
yourtextview.panGestureRecognizer.allowedTouchTypes = @[@(UITouchTypeIndirect)];
Fixed it for me.
Upvotes: 4