要求,因为所有可用的解决方案都适用于Swift 3。 此外,我正在处理一个问题,当我在突出显示+选择一行后向上和向下滚动时,也会检查出现在同一indexPath(滚动后)的新行(但不会突出显示)。
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
if let cell = tableView.cellForRow(at: indexPath) {
cell.accessoryType = .checkmark
}
}
func tableView(_ tableView: UITableView, didDeselectRowAt indexPath: IndexPath) {
if let cell = tableView.cellForRow(at: indexPath) {
cell.accessoryType = .none
}
}
答案 0 :(得分:1)
不应在accessoryType
和didSelectRowAt
方法上更改didDeselectRowAt
,而应覆盖并在您的单元格类setSelected(_:animated:)上执行此操作。
class YourCellClass: UITableViewCell {
override func setSelected(_ selected: Bool, animated: Bool) {
super.setSelected(selected, animated: animated)
if selected {
accessoryType = .checkmark
} else {
accessoryType = .none
}
}
}
答案 1 :(得分:1)
你可以用我的方式:
在单元格内按一个按钮并按如下方式使用:
var arrSelectedRows:[Int] = []
//MARK:- UITableView Delegate Methods
func numberOfSections(in tableView: UITableView) -> Int {
return 1;
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return arrCategoryData.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cellIdentifier : String = "MenuPopupTBCell";
var cell : MenuPopupTBCell! = tblMenuListing.dequeueReusableCell(withIdentifier: cellIdentifier) as! MenuPopupTBCell;
if (cell == nil) {
cell = MenuPopupTBCell.init(style: UITableViewCellStyle.default, reuseIdentifier: cellIdentifier);
}
cell.btnCategoryTitle.imageView?.contentMode = .scaleAspectFit
let data = arrCategoryData[indexPath.row] as! [String:Any]
cell.btnCategoryTitle.setTitle(data["title"] as? String, for: .normal)
let id = data["id"] as! Int
if arrSelectedRows.contains(id){
cell.btnCategoryTitle.setImage(UIImage(named:"checkBoxChecked"), for: .normal)
}else{
cell.btnCategoryTitle.setImage(UIImage(named:"checkBocUnchecked"), for: .normal)
}
cell.btnCategoryTitle.tag = id
cell.btnCategoryTitle.addTarget(self, action: #selector(checkBoxSelection(_:)), for: .touchUpInside)
return cell;
}
@objc func checkBoxSelection(_ sender:UIButton)
{
if self.arrSelectedRows.contains(sender.tag){
self.arrSelectedRows.remove(at: self.arrSelectedRows.index(of: sender.tag)!)
}else{
self.arrSelectedRows.append(sender.tag)
}
self.tblMenuListing.reloadData()
}
这样您就可以获得
arrSelectedRows
中所有选定的ID 可以根据需要使用它
输出: -
答案 2 :(得分:0)
您可以使用集合来确定是否已选中某个项目。 并添加以下内容:
var items: [(text: String, checked: Bool)] = [] //example, can be what ever you want
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = UITableViewCell() //you can reuse cell for performance
let item = items[indexPath.row]
cell.textLabel?.text = item.text //set text
cell.accessoryType = item.checked ? .checkmark : .none //mark cell base on array
return cell
}
并在其他方法(didSelect& didDeselect)中更新数组中的数据
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
if let cell = tableView.cellForRow(at: indexPath) {
cell.accessoryType = .checkmark
items[indexPath.row].checked = true //add this
}
}
func tableView(_ tableView: UITableView, didDeselectRowAt indexPath: IndexPath) {
if let cell = tableView.cellForRow(at: indexPath) {
cell.accessoryType = .none
items[indexPath.row].checked = false //add this
}
}
在此修改后 - 您的表格视图不会再次标记错误的单元格