iPhone 如何在 UITableView/UIImageView 中执行多列操作
我如何实现以下屏幕。
哪些 ui 控件可用于实现相同的网格行为? 我看到 UITableView,但它不支持多列。怎么可能呢?
谢谢, 阿纳托利
How I can implement the following screen.
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
一个带有三个(如果数星星的话会是六颗)
UIImageView
和三个UILabel
的UITableViewCell
怎么样?How about a
UITableViewCell
with three (if you count the stars it'll make six)UIImageView
s and threeUILabel
s?您可以在每个单元格的图像下方放置三个 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:
根据您的要求,我认为您应该使用 AQGridView,
我在这里找到了它: https://github.com/AlanQuatermain /AQGridView
您可以下载示例代码。
我已经下载了示例代码并在我的 iPad 5.0 模拟器上运行它,截图如下:
最让我惊讶的是,当你将设备切换到横向模式时,它会自动以四列(利用空间):
我希望这会有所帮助。
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:
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):
I hope this helps.
自定义 UITableViewCell 以在内部包含许多单元格并根据需要渲染每个单元格。
无论如何,在控制器中执行此操作并不是一个好习惯。您应该构建一个外部控件来处理它。
请看一下我的 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: