I\'m trying to pin an UILabel to it\'s parent cell. I added four constraints (top, leading, trailing, bottom) which works fine on iOS 8.0 but not on iOS 7.X
Overriding the custom cell's layoutSubviews is a possible workaround:
layoutSubviews
override func layoutSubviews() { contentView.frame = bounds super.layoutSubviews() }