In Xcode 6 Beta 7 and all versions before it, I had a collection view that would update its constraints on its cells when an iPad would rotate between landscape and portrait. No
Override the custom cell's layoutSubviews as a temporary fix:
layoutSubviews
override func layoutSubviews() { contentView.frame = bounds super.layoutSubviews() }