我正在从服务器获取数据,我想根据日期在tableView
上显示数据。将有多个部分..
例如:
第1天:item1
第2天:项目1,项目2
第3天:项目1,项目2,项目3
....
类似于此屏幕截图:
我该如何通过编程方式做类似的事情?
答案 0 :(得分:1)
请查看Apple的UITableViewDataSource
documentation。您需要实现以下方法:
numberOfSections(in:)
tableView(_:numberOfRowsInSection:)
tableView(_:cellForRowAt:)