[iOS]技巧集锦:UICollectionView在旋转屏幕后Cell中的约束不起作用或自动布局失效

这似乎是iOS的一个BUG(ref: stackoverflow的大神们讲的)

解决方案

在继承自UITableViewCell的子类中的init方法中加入如下设置:

self.contentView.frame = self.bounds;
self.contentView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;

原文地址:https://www.cnblogs.com/sohobloo/p/4434591.html