具有带有多个标题和部分的UITableView

时间:2018-07-17 09:06:28

标签: ios swift xcode uitableview

我正在从服务器获取数据,我想根据日期在tableView上显示数据。将有多个部分..

例如:

第1天:item1

第2天:项目1,项目2

第3天:项目1,项目2,项目3

....

类似于此屏幕截图:

enter image description here

我该如何通过编程方式做类似的事情?

1 个答案:

答案 0 :(得分:1)

请查看Apple的UITableViewDataSource documentation。您需要实现以下方法:

  • numberOfSections(in:)
  • tableView(_:numberOfRowsInSection:)
  • tableView(_:cellForRowAt:)