iOS 8 GM does not update constraints on collection views

后端 未结 4 1578
小鲜肉
小鲜肉 2021-02-13 09:57

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

4条回答
  •  -上瘾入骨i
    2021-02-13 10:54

    Override the custom cell's layoutSubviews as a temporary fix:

    override func layoutSubviews() {
        contentView.frame = bounds
        super.layoutSubviews()
    }
    

提交回复
热议问题