didSelectRowAtIndexPath 中的 tableViewCell 附件类型问题
tableViewCell accessory type issue in didSelectRowAtIndexPath
我有一个包含人员列表的 tableView。我想要 select 多个单元格。我创建了一个字典来存储 selected 单元格 (screenshot)。
var checkedSubjects: [Person: Bool] = [Person: Bool]()
然后当我 select 一个单元格时,它会在单元格附近显示一个复选标记并将其保存在我的数组中 (screenshot)。
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
var cell: SearchTableViewCell = tableView.dequeueReusableCellWithIdentifier("CELL", forIndexPath: indexPath) as! SearchTableViewCell
cell.tintColor = UIColor(hex: 0x3f51b5)
cell.subjectNameLabel.text = subjects[indexPath.row].name
cell.subjectDescriptionLabel.text = "(\(subjects[indexPath.row].type))"
let person = Person(id: subjects[indexPath.row].id, name: subjects[indexPath.row].name, type: subjects[indexPath.row].type)
if checkedSubjects[person] != nil {
cell.accessoryType = checkedSubjects[person]! ? .Checkmark : .None
}
return cell
}
func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
tableView.deselectRowAtIndexPath(indexPath, animated: false)
let index = indexPath.row
let person = Person(id: subjects[index].id, name: subjects[index].name, type: subjects[index].type)
if tableView.cellForRowAtIndexPath(indexPath)!.accessoryType == .Checkmark {
tableView.cellForRowAtIndexPath(indexPath)!.accessoryType = .None
checkedSubjects[person] = false
counter--
} else {
tableView.cellForRowAtIndexPath(indexPath)!.accessoryType = .Checkmark
checkedSubjects[person] = true
counter++
}
if counter > 0 {
saveBtn.enabled = true
let text = counter == 1 ? "Add \(counter) person" : "Add \(counter) persons"
saveBtn.setTitle(text, forState: UIControlState.Normal)
} else {
saveBtn.enabled = false
saveBtn.setTitle("Choose persons", forState: UIControlState.Normal)
}
}
但是当我再按一次这个单元格时,我希望它 return 到默认视图。它删除了复选标记,但文本不为空 space (screenshot)。标签的尾部约束设置为容器边距。
我已经尝试在 didSelectRowAtIndexPath 中 reloadData()
tableView,但它没有帮助。
有什么办法可以解决这个问题吗?
我认为这里的问题是您试图在 didSelectRow
实现中操纵物理单元。这是错误的处理方式。不要尝试更改甚至读取 didSelectRow
实现中单元格的附件类型!相反,完全在模型上操作 (checkedSubjects
) 并 重新加载 受影响的行,以便视图获取对模型的更改(因为 cellForRow
将是称为)。
我有一个包含人员列表的 tableView。我想要 select 多个单元格。我创建了一个字典来存储 selected 单元格 (screenshot)。
var checkedSubjects: [Person: Bool] = [Person: Bool]()
然后当我 select 一个单元格时,它会在单元格附近显示一个复选标记并将其保存在我的数组中 (screenshot)。
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
var cell: SearchTableViewCell = tableView.dequeueReusableCellWithIdentifier("CELL", forIndexPath: indexPath) as! SearchTableViewCell
cell.tintColor = UIColor(hex: 0x3f51b5)
cell.subjectNameLabel.text = subjects[indexPath.row].name
cell.subjectDescriptionLabel.text = "(\(subjects[indexPath.row].type))"
let person = Person(id: subjects[indexPath.row].id, name: subjects[indexPath.row].name, type: subjects[indexPath.row].type)
if checkedSubjects[person] != nil {
cell.accessoryType = checkedSubjects[person]! ? .Checkmark : .None
}
return cell
}
func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
tableView.deselectRowAtIndexPath(indexPath, animated: false)
let index = indexPath.row
let person = Person(id: subjects[index].id, name: subjects[index].name, type: subjects[index].type)
if tableView.cellForRowAtIndexPath(indexPath)!.accessoryType == .Checkmark {
tableView.cellForRowAtIndexPath(indexPath)!.accessoryType = .None
checkedSubjects[person] = false
counter--
} else {
tableView.cellForRowAtIndexPath(indexPath)!.accessoryType = .Checkmark
checkedSubjects[person] = true
counter++
}
if counter > 0 {
saveBtn.enabled = true
let text = counter == 1 ? "Add \(counter) person" : "Add \(counter) persons"
saveBtn.setTitle(text, forState: UIControlState.Normal)
} else {
saveBtn.enabled = false
saveBtn.setTitle("Choose persons", forState: UIControlState.Normal)
}
}
但是当我再按一次这个单元格时,我希望它 return 到默认视图。它删除了复选标记,但文本不为空 space (screenshot)。标签的尾部约束设置为容器边距。
我已经尝试在 didSelectRowAtIndexPath 中 reloadData()
tableView,但它没有帮助。
有什么办法可以解决这个问题吗?
我认为这里的问题是您试图在 didSelectRow
实现中操纵物理单元。这是错误的处理方式。不要尝试更改甚至读取 didSelectRow
实现中单元格的附件类型!相反,完全在模型上操作 (checkedSubjects
) 并 重新加载 受影响的行,以便视图获取对模型的更改(因为 cellForRow
将是称为)。