gpt4 book ai didi

ios - 如何在 swift 4 的 uitableView 中添加多个部分

转载 作者:行者123 更新时间:2023-11-30 11:41:29 25 4
gpt4 key购买 nike

我想在我的 tableView 中创建 3 个部分,但是当我运行此代码时,我只得到一个部分,它是 itemsInSections。谁能帮助我显示表格 View 中的所有部分和项目?

var itemsInSections: Array<Array<String>> = [["1A", "1B", "1C"], ["2A", "2B"], ["3A", "3B", "3C", "3D", "3E"]]
var sections: Array<String> = ["Section 1", "Section 2", "Section 3"]

override func viewDidLoad() {
super.viewDidLoad()

self.tableview.dataSource = self
self.tableview.delegate = self
}

func numberOfSectionsInTableView(tableView: UITableView) -> Int {
return self.sections.count
}

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return self.itemsInSections[section].count
}

func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
return self.sections[section]
}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cell") as! UITableViewCell
let text = self.itemsInSections[indexPath.section][indexPath.row]

cell.textLabel!.text = text

return cell
}

最佳答案

您需要使用正确的方法签名。

这个:

func numberOfSectionsInTableView(tableView: UITableView) -> Int {
return self.sections.count
}

需要:

func numberOfSections(in tableView: UITableView) -> Int {
return self.sections.count
}

关于ios - 如何在 swift 4 的 uitableView 中添加多个部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49248237/

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