UITableView 滚动在 UIScrollView 内部不起作用
我在 UIScrollView 中添加了 UITableView。运行良好。 UITableView 宽度是 1200。我将滚动移动到超过 320 ,我无法在 UITableView 中滚动和单击。在 0 到 320px 之间,它工作正常。超过320,UIScrollView拖着UITableview也不能滚动也不能点击。
编辑:
我添加
scrollview.contentSize = CGSizeMake(1200, 1);
Scrollview 现在不拖动。但是,无法在 UITableView 中向下滚动超过 320px 宽度。
I add UITableView inside UIScrollView. It's working fine. UITableView width is 1200. I move scroll to over 320 , I can't scroll and click in UITableView. Between 0 and 320px, it's working fine. Over 320, UIScrollView is dragging the UITableview and can't scroll and can't clik ,too.
Edit:
I add
scrollview.contentSize = CGSizeMake(1200, 1);
Scrollview is not dragging now. However, can't scroll down in UITableView over 320px width.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将滚动视图内容大小高度增加到表格的高度。如果高度为1,那么如何将表格作为子视图添加到高度为1的滚动视图中。
Increase the scroll view content size height to the height of the table.If the height is 1 then how are u adding a table as a subview to a scroll view of height 1.