gpt4 book ai didi

ios - 单击每个部分展开表格 View 部分

转载 作者:搜寻专家 更新时间:2023-11-01 06:57:19 24 4
gpt4 key购买 nike

我有一个 tableview,它有 2 个部分和一些单元格(可以是动态的),每个部分下面显示相关数据。

这是我为显示数据而编写的代码...

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {

if section == 0 {
return recentUsers?.count
} else {
return groupNameArray?.count
}

}


func numberOfSections(in tableView: UITableView) -> Int {
return 2
}




func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
if section == 0 {
return " CHAT LIST"
} else {
return " GROUPS"
}
}




func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: cellIdentifier, for: indexPath) as! RecentMessageCell
cell.tag = indexPath.row

if indexPath.section == 0 {

if let user = recentChatUsers?[indexPath.row] {
cell.idLabel?.text = user.id

}
} else {


if groupNameArray.isEmpty == false {
let grpArr = groupNameArray[indexPath.row]
cell.userNameLabel?.text = grpArr.grpname
}
}

return cell
}

现在我想要实现的是,如果我单击第一部分,它应该展开并显示它包含的单元格,第二个单元格也应该发生同样的情况。再次单击每个部分应该会隐藏展开的单元格。

我确实在互联网上搜索了解决方案。但是,尽管有可用的资源,但我找不到对我的问题有多大帮助...

最佳答案

添加一个数组来跟踪部分展开/折叠

let sectionStats = [Bool](repeating: true, count: 2)

添加一个IBAction来跟踪section tap,更新相应section的sectionStats值并重新加载section

并如下所示更新您的numberOfRowsInSection

    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
guard sectionStats[section] else {
return 0
}

if section == 0 {
return 1
} else {
return list.count
}
}

可点击的标题:

func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
return headerView(section: section, title: section == 0 ? "CHAT LIST" : "GROUPS")
}

private func headerView(section: Int, title: String) -> UIView {
let button = UIButton(frame: CGRect.zero)
button.tag = section
button.setTitle(title, for: .normal)
button.setTitleColor(UIColor.red, for: .normal)
button.addTarget(self, action: #selector(sectionHeaderTapped), for: .touchUpInside)

return button
}

@objc private func sectionHeaderTapped(sender: UIButton) {
let section = sender.tag
sectionStats[section] = !sectionStats[section]
tableView.beginUpdates()
tableView.reloadSections([section], with: .automatic)
tableView.endUpdates()
}

关于如何构建具有可折叠部分的 TableView 的好教程: https://medium.com/ios-os-x-development/ios-how-to-build-a-table-view-with-collapsible-sections-96badf3387d0

关于ios - 单击每个部分展开表格 View 部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52738014/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com