TVOS UITextView 不滚动
TVOS UITextView not scrolling
UITextView
在 TVOS
中没有滚动,我可以看到它的 contentSize
比它的 bounds
好,我可以确认 scrollEnabled = YES
,userInteraction = YES
并且它是当前焦点视图。
yourtextview.panGestureRecognizer.allowedTouchTypes = @[@(UITouchTypeIndirect)];
帮我修好了。
UITextView
在 TVOS
中没有滚动,我可以看到它的 contentSize
比它的 bounds
好,我可以确认 scrollEnabled = YES
,userInteraction = YES
并且它是当前焦点视图。
yourtextview.panGestureRecognizer.allowedTouchTypes = @[@(UITouchTypeIndirect)];
帮我修好了。