RFQuiltLayout
RFQuiltLayout copied to clipboard
iOS 8 problem
Hello,
It seems that in iOS 8 RFQuiltLayout is not working well, it resize the space of each cell but the cell is not resizing at all.
What is the problem here?
I red about that problem, the issue is a bug in iOS 8. You can solve that adding this code in your CollectionCell sub class
- (void)setBounds:(CGRect)bounds { [super setBounds:bounds]; self.contentView.frame = bounds; }