UICollectionView Layout like SnapChat?
问题 how do we create a UICollectionViewLayout like the SnapChat's stories? Any ideas please? I'd like to have a solution without external library. 回答1: Based on a precedent answer adapted to your issue: -(id)initWithSize:(CGSize)size { self = [super init]; if (self) { _unitSize = CGSizeMake(size.width/2,80); _cellLayouts = [[NSMutableDictionary alloc] init]; } return self; } -(void)prepareLayout { for (NSInteger aSection = 0; aSection < [[self collectionView] numberOfSections]; aSection++) { /