Adnan Aftab
Adnan Aftab

Reputation: 14477

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.

Upvotes: 5

Views: 951

Answers (1)

user3160965
user3160965

Reputation: 106

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

Fixed it for me.

Upvotes: 4

Related Questions