问题描述
在我的tableView类中,大家好,我有以下枚举
enum tabelSecion {
case action
case drama
case comedy
}
我需要使用此枚举来具有3个不同的节头。我也创建了一个笔尖来代表一个自定义的sectionHeaderCell,里面只有一个标签。如何显示节标题? 感谢您的帮助
解决方法
您可以通过使用动态变量SectionTitle
扩展枚举来实现。
enum TabelSection: Int,CaseIterable {
case action
case drama
case comedy
var sectionTitle: String {
switch self {
case action: return "Action"
...
}
}
}
通过使您枚举一个Int,可以使用rawValue对其进行初始化。要初始化的rawValue是您从TableView方法获得的部分。
CaseIterable也非常好用,因此您可以使用numberOfSections
方法从中获取数字大小写(= sections)。
override func tableView(_ tableView: UITableView,titleForHeaderInSection section: Int) -> String? {
return TabelSection(rawValue: section)?.sectionTitle
}
编辑:
要为tableView的每个部分显示headerView
,请将TableViewstyle更改为Grouped
在您的代码中,只需为tableView提供正确数量的节即可。
override func numberOfSections(in tableView: UITableView) -> Int {
return TabelSection.allCases.count
}
如果您确实需要自定义HeaderView,则可以使用以下方法进行操作
override func tableView(_ tableView: UITableView,viewForHeaderInSection section: Int) -> UIView? {
...
}