Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 617
Adnan Aftab Avatar asked Sep 26 '22 16:09

Adnan Aftab


1 Answers

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

Fixed it for me.

like image 168
user3160965 Avatar answered Sep 30 '22 08:09

user3160965