Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
UITextView在TVOS不滚动时,我可以看到它contentSize比它好bounds,我可以确认scrollEnabled = YES,userInteraction = YES它是当前的焦点视图。
UITextView
TVOS
contentSize
bounds
scrollEnabled = YES
userInteraction = YES
yourtextview.panGestureRecognizer.allowedTouchTypes = @[@(UITouchTypeIndirect)];
为我修好了。