So far I tried:
@IBOutlet weak var requestDateButtonBottomConstraint: NSLayoutConstraint!
requestDateButtonBottomConstraint.constant = sender.selected ? 0 : 260
I also tried frame approach:
var cellFrame = self.frame
cellFrame.size.height = sender.selected ? 44 : 260
self.frame = cellFrame
No one is working...