29

I am trying to implement a custom selection style for my cells in a UICollectionView. Even though it is easily possible to do this manually in the didSelect and didDeSelect methods I would like to achieve this by manipulating the "selected" variable in UICollectionViewCell.

I have this code for it:

    override var selected: Bool {
    get {
        return super.selected
    }
    set {
        if newValue {
            self.imageView.alpha = 0.5
            println("selected")
        } else if newValue == false {
            self.imageView.alpha = 1.0
            println("deselected")
        }
    }
}

Now, when I select a cell, the cell gets highlighted but "selected" gets printed twice and the deselection does not work (even though both UICollectionView methods are implemented).

How would I go about this? Thanks!

Julius
  • 1,451
  • 1
  • 15
  • 19

4 Answers4

42

And for Swift 3.0:

override var isSelected: Bool {
    didSet {
        alpha = isSelected ? 0.5 : 1.0
    }
}
Morten Gustafsson
  • 1,869
  • 2
  • 24
  • 34
31

Figured it out by stepping into code. The problem was that the super.selected wasn't being modified. So I changed the code to this:

override var selected: Bool {
    get {
        return super.selected
    }
    set {
        if newValue {
            super.selected = true
            self.imageView.alpha = 0.5
            println("selected")
        } else if newValue == false {
            super.selected = false
            self.imageView.alpha = 1.0
            println("deselected")
        }
    }
}

Now it's working.

Julius
  • 1,451
  • 1
  • 15
  • 19
14

Try this one.

override var selected: Bool {
    didSet {
        self.alpha = self.selected ? 0.5 : 1.0
    }
}
osrl
  • 8,168
  • 8
  • 36
  • 57
2

For Swift 5, put this code in the cell

override var isSelected: Bool {
    get {
        return super.isSelected
    }
    set {
        if newValue {
            super.isSelected = true
            self.lbl_Sub_Category.textColor = UIColor.white
            self.ly_Container.backgroundColor = UIColor.black
            print("selected")
        } else if newValue == false {
            super.isSelected = false
            self.lbl_Sub_Category.textColor = UIColor.black
            self.ly_Container.backgroundColor = UIColor.white
            print("deselected")
        }
    }
}

You can select the first item of the collection view using this code in the viewcontroller:

    grid_SubCategories.reloadData()
    
    let firstItem:IndexPath = IndexPath(row: 0, section: 0)
    grid_SubCategories.selectItem(at: firstItem, animated: false, scrollPosition: .left)
Firas Shrourou
  • 625
  • 8
  • 19