I have a custom UICollectionViewCell subclass that overwrites initWithFrame: and layoutSubviews to setup its views. However, I\'m now trying to do two
initWithFrame:
layoutSubviews
Should not mess with state when overridden in this way:
override var isSelected: Bool { get { return super.isSelected } set { super.isSelected = newValue . . . } }