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.
我有一个滚动视图,它有 A (UITableView) 和 B(UIView) 作为子视图。我还提供了 scroll.content 大小。
当我从 A 和 B 外部滚动时,可以滚动。
问题在于 B,我无法提供滚动。如果我向 B 的用户交互启用属性提供 NO ,则它正在滚动。我如何能够在 B 上提供滚动,并将属性用户交互启用为 YES。
B 视图 - 有要处理的事件..
帮我解决这个问题
它取决于滚动视图的内容大小。所以提供内容大小,如 . scrollView.contentSize=CGSizeMake(0,A.frame.size.height+B.frame.size.height);
scrollView.contentSize=CGSizeMake(0,A.frame.size.height+B.frame.size.height);
** 注意:UITableView 有滚动属性,而 UIView 没有滚动属性,所以 UIView 只有在正确添加到 UIScrollView 时才会随着 UIScrollView 滚动。**