如何解决Swift-如何使用枚举为UITableView创建自定义标头部分?
在我的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? {
...
}
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。