gpt4 book ai didi

ios - 在表格 View 中选择多个对象

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

我正在使用 TableView 来选择对象。我想在表格 View 中选择多个对象。我正在使用以下代码:

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell: ContactCell = tableView.dequeueReusableCellWithIdentifier(textCellIdentifier) as! ContactCell

let row = indexPath.row
let person=contacts[row]
cell.setCell(person.nameLabel,image: "")
return cell
}


func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
let row = indexPath.row
let person=contacts[row]

if let cell = tableView.cellForRowAtIndexPath(indexPath) {
if cell.accessoryType == .Checkmark
{
cell.accessoryType = .None
}
else
{
cell.accessoryType = .Checkmark
}
}
tableView.deselectRowAtIndexPath(indexPath, animated: true)
}

我的表格 View 是这样的:

enter image description here

我选择了“Kate”,然后向下滚动到底部,“测试”也被标记了。但为什么?我只选择了“凯特”。我怎样才能避免这种情况?

最佳答案

它也被选中,因为 UITableView 中的单元格被重用...

let cell: ContactCell = tableView.dequeueReusableCellWithIdentifier(textCellIdentifier) as! ContactCell

如果你想解决这个问题,最好的方法是将每个单元格状态保存在数组中,它保存着你的 UITableView 的数据......这是最好的方法。

另一种方法是声明一个类型为 [Int: Bool] 的字典,并将您选择的状态保存到这个... Int 键将是行索引,它的值可以是 true 表示选中,或者 false 表示未选中...

更新

下面是如何解决你的问题的例子

class CustomTableViewController: UITableViewController {

@IBOutlet weak var contactsTableView: UITableView!
lazy var contactsArray: [[String: AnyObject]] = [[String: AnyObject]]()

//This method is to convert your contacts string array, into the array you need
private func appendContactsToContactsArray (contacts: [String]) {
for contact in contacts {
contactsArray.append(["name": contact, "selected": false])
}
contactsTableView.reloadData()
}

override func numberOfSectionsInTableView(tableView: UITableView) -> Int {
return 1
}

override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return contactsArray.count
}

override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell: ContactCell = tableView.dequeueReusableCellWithIdentifier("Cell") as! ContactCell

cell.textLabel?.text = contactsArray[indexPath.row]["name"] as? String

if (isCellSelectedAtIndexPath(indexPath)) {
cell.accessoryType = UITableViewCellAccessoryType.Checkmark
} else {
cell.accessoryType = UITableViewCellAccessoryType.None
}

return cell
}

override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
if (isCellSelectedAtIndexPath(indexPath)) {
contactsArray[indexPath.row]["selected"] = false
} else {
contactsArray[indexPath.row]["selected"] = true
}
tableView.reloadRowsAtIndexPaths([indexPath], withRowAnimation: UITableViewRowAnimation.Automatic)
}

private func isCellSelectedAtIndexPath (indexPath: NSIndexPath) -> Bool {
return contactsArray[indexPath.row]["selected"] as? Bool ?? false
}

}

关于ios - 在表格 View 中选择多个对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32333355/

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