Я согласен с SuperDuperTango , чтобы просто использовать один раздел в этом случае.Простой способ преобразовать ваш секционированный источник данных будет выглядеть примерно так:
struct Section {
let title: String
let rows: [Row]
}
struct Row {
let title: String
}
class TableViewController: UITableViewController {
// original data source
let sections: [Section] = {
var sections = [Section]()
for section in ["A", "B", "C", "D", "E"] {
let numberOfRows = 1...Int.random(in: 1...5)
let rows = numberOfRows.map { Row(title: "Section \(section), Row \($0)") }
let section = Section(title: "Section \(section)", rows: rows)
sections.append(section)
}
return sections
}()
// transformed data source
var allRows: [Row] {
return sections.reduce([], { $0 + $1.rows })
}
override func numberOfSections(in tableView: UITableView) -> Int {
return 1
}
override func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
return "Your section title"
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return allRows.count
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath)
cell.textLabel?.text = allRows[indexPath.row].title
return cell
}
}