Custom Checkbox AccessoryView for UITableView

382 Views Asked by At

I am using Custom AccessoryView for UITableViewCell. I am using a checkbox. Here, I want multiple selection. The code works fine while selection but while deselecting it I am having issues. I am not sure what I should be writing in cellForRowAtIndexPathMethod. The issue I am facing is, after deselecting the checkbox, I cannot select it again. Here is my code:

 func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {

    let fourthCell = tableView.dequeueReusableCellWithIdentifier("fourthCell", forIndexPath: indexPath) as! ItemDetailFourthTableViewCell

      if indexPath != self.lastIndexPath {
                    fourthCell.accessoryView = UIImageView(image: UIImage(named: "checkBoxPassive.png"))
                    fourthCell.accessoryView?.tag = 2
      }
      if indexPath == self.lastIndexPath {
                    fourthCell.accessoryView = UIImageView(image: UIImage(named: "checkBoxActive.png"))
      }
    return fourthCell
  }

  func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
             tableView.deselectRowAtIndexPath(indexPath, animated: true)
            self.isSelected = true
            self.lastIndexPath == indexPath
     if indexPath.section == 1 {
                let cell = tableView.cellForRowAtIndexPath(indexPath) as! ItemDetailFourthTableViewCell
                print("The cell here is \(cell)")
               print("Here the cell accessoryView is \(cell.accessoryView?.tag)")
    if cell.accessoryView?.tag == 0   {
                    print("It is active")
                    cell.accessoryView = UIImageView(image:  UIImage(named: "checkBoxPassive.png"))
    } else if cell.accessoryView?.tag == 2 {
                    print("It is passive")
                      cell.accessoryView = UIImageView(image:  UIImage(named: "checkBoxActive.png"))
    }

   }
  }
0

There are 0 best solutions below