如何使用界面生成器在 UITableView 中设置水平滚动?

发布于 2024-10-21 23:31:35 字数 157 浏览 6 评论 0原文

我的应用程序中有 UITableView,有 2 列。我可以阅读第 1 列和第 2 列的一半。我的问题是 - 我们可以使用 uitableview 中的界面生成器添加水平滚动,以便我可以读取表中所有单元格的第 2 列吗?

我们是否也必须为此添加一些代码,或者只能通过界面生成器来实现?

I have UITableView in my app with 2 columns.I can read column 1 and half of column 2.My questions are-
can we add horizontal scroll by use of interface builder in uitableview so i can read column 2 for all cells in table?

should we have to add some code for that too or its only possible with interface builder?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

花伊自在美 2024-10-28 23:31:35

首先,UITableView 中的行不会在 UITableView 内自行滚动。
我的解决方案(我知道有人会想出更好的东西)
就是使用一个UIScrollView,然后在里面添加UITableView
UIScrollView 将具有与您的 UITableView 现在相同的大小,但 UIScrollView contentSize 属性将具有相同的高度,但它会具有更大的高度宽度。
在此处输入图像描述

First, the row in the UITableView doesn't scrolls itself inside the UITableView.
My solution (I know someone will come out with something better)
Is to use an UIScrollView and then inside add the UITableView.
This UIScrollView will have the same size that your UITableView have now, but the UIScrollView contentSize property will have the same height but it would have a greater width.
enter image description here

残龙傲雪 2024-10-28 23:31:35

您不能向 UITableView 添加两列。我的理解是解决上述问题是并排创建两个表视图。根据您的要求编写代码或界面生成器

you cannot add two columns to UITableView. What i understand is to solve the above problem is create two table view side by side. write code or interface builder as per your requirement

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文