Swift 教程之TableView使用04section的打开与关闭
之前系列课程
- Swift 教程之TableView使用01基础代码
- Swift 教程之TableView使用02显示图片
- Swift 教程之TableView使用03自定义Cell
- Swift 教程之TableView使用04卡片式Cell
效果图
Jietu20190506-095951@2x.jpg Jietu20190506-100006@2x.jpg1. 配置button
override func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
let button = UIButton()
button.tag = section
let isOpen = sections[section].open
button.setTitle(isOpen ? "关闭" : "打开", for: .normal)
//button.setTitle("close", for: .normal)
button.setTitleColor(.black, for: .normal)
button.addTarget(self, action: #selector(self.openSection), for: .touchUpInside)
return button
}
button.tag = section 存储一下标签
button.setTitle(isOpen ? "关闭" : "打开", for: .normal) 自动设置button标题
2. 自动删除或插入
@objc fileprivate func openSection(button:UIButton){
print("button tag:",button.tag)
let section = button.tag
var indexPaths = [IndexPath]()
for row in sections[section].data.indices {
let indexPathToDelete = IndexPath(row:row, section: section)
indexPaths.append(indexPathToDelete)
}
let isOpen = sections[section].open
sections[section].open = !isOpen
button.setTitle(isOpen ? "打开" : "关闭", for: .normal)
if isOpen {
tableView.deleteRows(at: indexPaths, with: .fade)
} else {
tableView.insertRows(at: indexPaths, with: .fade)
}
}
不要用reloadData()
网友评论