分组表视图
我想创建一个与此图像类似的表格视图!谁能告诉我一个例子或者说我该怎么做?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
创建一个 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.
这是一个关于自定义分组 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.
将其放入 UITableView 类的 init 方法中
Put this in your init method in your UITableView class
我有一些类似的东西,使用分组静态 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