分组表视图

发布于 2024-10-21 20:49:19 字数 111 浏览 4 评论 0原文

在此处输入图像描述

我想创建一个与此图像类似的表格视图!谁能告诉我一个例子或者说我该怎么做?

enter image description here

I want to create a table view which looks like this image! Who can tell me an example or say how can I do this ?

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

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

发布评论

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

评论(4

锦上情书 2024-10-28 20:49:19

创建一个 UITableView 并将样式设置为 UITableViewStyleGrouped (您可以通过编程方式或在 IB 中执行此操作)。

然后您需要 2 个部分,第一个部分有 3 行,第二部分有 1 行。

您可能应该只查看 UITableView 的文档并查看其中的相同代码即可开始,但这是基本格式。

Create a UITableView and set the style to UITableViewStyleGrouped (you can do this programmatically or in the IB).

Then you want 2 sections, the first has 3 rows and the second has 1 row.

You should probably just look in the documentation for UITableView and check out the same code there to get started, but this is the basic format.

半山落雨半山空 2024-10-28 20:49:19

这是一个关于自定义分组 UITableView 的很好的教程,尽管它确实假设您精通图像编辑器来创建各种自定义图像。

This is a good tutorial on customising a grouped UITableView, although it does assume that you are proficient with an image editor to create the various custom images.

不奢求什么 2024-10-28 20:49:19

将其放入 UITableView 类的 init 方法中

    [super initWithStyle:UITableViewStyleGrouped];

Put this in your init method in your UITableView class

    [super initWithStyle:UITableViewStyleGrouped];
东走西顾 2024-10-28 20:49:19

我有一些类似的东西,使用分组静态 uitableview 创建设置页面,请看这里 Xcode 6教程使用Swift分组UITableView

I have some something similar using grouped static uitableview for creating setting page take a look here Xcode 6 Tutorial Grouped UITableView using Swift

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