I have a problem about my cell\'s button. In my tableView each row is composed by: an image, some labels and a button. The button has a checkmark image. When it is clicked, the
Try to do it like this:
var checkBook = UIImageView() if self.checkBook.image == UIImage(named: "check"){ self.checkBook.image = UIImage(named: "uncheck") } else{ self.checkBook.image = UIImage(named: "check") }