gpt4 book ai didi

ios - 在 swift 3 的不同部分的 TableView 中执行互斥选择的最佳方法

转载 作者:行者123 更新时间:2023-11-28 17:49:46 24 4
gpt4 key购买 nike

我有一个包含不同部分的 TableView ,我需要能够从不同部分进行多选,但每个部分中的行应该能够明智地选择互斥。例如:在下面的屏幕截图中,我应该能够从披萨中选择玛格丽塔或烧烤鸡肉,对于深盘披萨也是如此,但我应该能够在披萨部分和深盘披萨之间进行多项选择

enter image description here

到目前为止,下面是我的代码,我想知道解决这个问题的最佳方法是什么。

   let section = ["Pizza", "Deep dish pizza"]

let items = [["Margarita", "BBQ Chicken"], ["Sausage", "meat lovers"]]

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



override func numberOfSections(in tableView: UITableView) -> Int {

return section.count
}

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

return items[section].count
}


override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "tableCell", for: indexPath)

// Configure the cell...

cell.textLabel?.text = items[indexPath.section][indexPath.row]

return cell
}

最佳答案

您应该创建一些数据元素来跟踪每一行的选择。

我建议使用 [Int:Int] 的字典,其中键是部分,值是行。

选择一行后,您可以轻松检查该部分中是否已选择另一行,并在需要时取消选择。

var rowSelections = [Int:Int]()

func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
let section = indexPath.section
if let row = self.rowSelections[section] {
tableView.deselectRow(at: IndexPath(row:row, section:section), animated: true)
}
self.rowSelections[section]=indexPath.row
}

func tableView(_ tableView: UITableView, didDeselectRowAt indexPath: IndexPath) {
let section = indexPath.section
self.rowSelections[section]=nil
}

关于ios - 在 swift 3 的不同部分的 TableView 中执行互斥选择的最佳方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44947694/

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