Skip to content

Latest commit

 

History

History
17 lines (10 loc) · 384 Bytes

README.md

File metadata and controls

17 lines (10 loc) · 384 Bytes

PSAlignmentLayout

Usage

PSAlignmentLayout* layout = [[PSAlignmentLayout alloc] init];

// If not set this property or set it to `YES`, it will create a word wrap collection.
[layout setAutoWordWrap:NO];

CGRect frame = CGRectMake(0, 0, 320, 300);
UICollectionView* collectionView = [[UICollectionView alloc] initWithFrame:frame collectionViewLayout:layout];

...