iPhone 如何在 UITableView/UIImageView 中执行多列操作

发布于 2024-11-03 04:17:31 字数 164 浏览 2 评论 0原文

我如何实现以下屏幕。

在此处输入图像描述

哪些 ui 控件可用于实现相同的网格行为? 我看到 UITableView,但它不支持多列。怎么可能呢?

谢谢, 阿纳托利

How I can implement the following screen.

enter image description here

What are ui controls can be used for implementation the same grid behavior?
I'm seeing UITableView, but it doesn't support multi columns. How can be?

Thanks,
Anatoly

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

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

发布评论

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

评论(4

柠檬色的秋千 2024-11-10 04:17:31

一个带有三个(如果数星星的话会是六颗)UIImageView 和三个 UILabelUITableViewCell 怎么样?

How about a UITableViewCell with three (if you count the stars it'll make six) UIImageViews and three UILabels?

窗影残 2024-11-10 04:17:31

您可以在每个单元格的图像下方放置三个 UIImageView 和三个 UILabels。

这是关于如何在 UITableView 中绘制网格的教程

但对于您的情况,我会使用自定义 UITableViewCell 的界面生成器来完成此操作:

在此处输入图像描述

You could put three UIImageViews and three UILabels below the images per cell.

Here's a tutorial on how to draw grids in a UITableView.

But for your case I'd do it with interface builder for a custom UITableViewCell:

enter image description here

分开我的手 2024-11-10 04:17:31

根据您的要求,我认为您应该使用 AQGridView,

我在这里找到了它: https://github.com/AlanQuatermain /AQGridView
您可以下载示例代码。

我已经下载了示例代码并在我的 iPad 5.0 模拟器上运行它,截图如下:
AQGridView in Portrait mode

最让我惊讶的是,当你将设备切换到横向模式时,它会自动以四列(利用空间):

横向模式下的 AQGridview

我希望这会有所帮助。

Basing from your requirements, I think you should use AQGridView,

I found it here: https://github.com/AlanQuatermain/AQGridView
You can download the sample code.

I've downloaded the sample code and run it on my iPad 5.0 Simulator, here is the screenshot:
AQGridView in portrait mode

and what amazed me most is that when you switch your device to landscape mode, it automatically displays the images in four columns (to utilize the space):

AQGridview in landscape mode

I hope this helps.

红焚 2024-11-10 04:17:31

自定义 UITableViewCell 以在内部包含许多单元格并根据需要渲染每个单元格。

无论如何,在控制器中执行此操作并不是一个好习惯。您应该构建一个外部控件来处理它。

请看一下我的 UIGridView。它使用解释的技术并产生您想要的结果。

这是屏幕截图:

UIGridView 示例

Customizing UITableViewCell to contain many cells inside and rendering each cell as needed.

Anyway, it's not a good practice to do that in your controller. You should build an external control to handle it.

Please take a look at my UIGridView. It uses the explained technique and produce the result that you want.

Here is the screenshot:

UIGridView Example

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