我正在尝试使用两个部分构建TableView。第二部分应填充数组中的数据。 Storyboard有一个带静态单元格的TableView。有两个部分,每个部分有一个单元格。
如果textSectionTwo
数组中只有一个项目,它可以正常工作,但当其中有更多项目时会中断
*由于未捕获的异常'NSRangeException'而终止应用程序,原因:'* - [__ NSSingleObjectArrayI objectAtIndex:]:索引1超出边界[0 .. 0]'
代码下方:
enum TableViewSections {
case sectionOne
case sectionTwo
}
class TableViewController: UITableViewController {
struct Identifier {
static let sectionOneCell = "SectionOne"
static let sectionTwoCell = "SectionTwo"
}
let textSectionOne = "Section 1"
let textSectionTwo = ["Section 2 - Row 1", "Section 2 - Row 2"]
override func viewDidLoad() {
super.viewDidLoad()
tableView.register(UITableViewCell.self, forCellReuseIdentifier: Identifier.sectionOneCell)
tableView.register(UITableViewCell.self, forCellReuseIdentifier: Identifier.sectionTwoCell)
tableView.reloadData()
}
// MARK: - Table view data source
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
switch sectionForIndex(section) {
case .sectionTwo?:
return textSectionTwo.count // <- breaks when return is > 1
case nil:
fatalError("Unexpected value")
default:
return super.tableView(tableView, numberOfRowsInSection: section)
}
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
switch sectionForIndex(indexPath.section) {
case .sectionOne?:
return self.tableView(tableView, sectionOneCellForRowAt: indexPath)
case .sectionTwo?:
return self.tableView(tableView, sectionTwoCellForRowAt: indexPath)
case nil:
fatalError("Unexpected value")
}
}
private func tableView(_ tableView: UITableView, sectionOneCellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: Identifier.sectionOneCell, for: indexPath)
cell.textLabel?.text = textSectionOne
return cell
}
private func tableView(_ tableView: UITableView, sectionTwoCellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: Identifier.sectionTwoCell, for: indexPath)
cell.textLabel?.text = textSectionTwo[indexPath.row]
return cell
}
func sectionForIndex(_ index: Int) -> TableViewSections? {
switch index {
case 0:
return .sectionOne
case 1:
return .sectionTwo
default:
return nil
}
}
}
编辑:
在this sample code from Appple中类似于我的问题。他们使用静态单元格并通过代码添加内容。
答案 0 :(得分:2)
静态表视图用于呈现具有静态单元UI和数据的表视图。它将仅使用您在Storyboard中创建的单元格。
解决方案:使用动态表视图。它允许您根据需要显示尽可能多的行。