eroth / ERJustifiedFlowLayout

A subclass of UICollectionViewFlowLayout for iOS that supports different types of cell justification and inter-cell spacing.
https://www.cocoacontrols.com/controls/erjustifiedflowlayout
MIT License
69 stars 13 forks source link

ERJustifiedFlowLayout

[![CI Status](http://img.shields.io/travis/Evan Roth/ERJustifiedFlowLayout.svg?style=flat)](https://travis-ci.org/Evan Roth/ERJustifiedFlowLayout) Version License Platform

About

This is for an iOS project and can be used on any iPad or iPhone. ERJustifiedFlowLayout is a subclass of Apple's UICollectionViewFlowLayout class, which is designed to be used in combination with a UICollectionView. This project assumes you are familiar with the latter—if not, you can read about UICollectionView here and you can read about UICollectionViewFlowLayout here.

ERJustifiedFlowLayout works with dynamic or static-sized UICollectionViewCells, as it only handles the layout aspect.

This project contains some code from the following sources: Michael Sand's answer to a question on SO and this Cocoanetics tutorial. Thanks for the inspiration!

Usage

To run the example project, clone the repo, and run pod install from the Example directory first.

Requirements

Tested on iOS 7 and 8 on all iPads and iPhones from 4S to 6+.

Installation

ERJustifiedFlowLayout is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "ERJustifiedFlowLayout"

Instructions

ERJustifiedFlowLayout can be used programmatically in the viewDidLoad method of the view controller your collection view is in:

ERJustifiedFlowLayout *flowLayout = [[ERJustifiedFlowLayout alloc] init];

or a reference to it can be created from your xib/storyboard like so:

alt text

Once instantiated or referenced, ERJustifiedFlowLayout requires only the setting of one property, with a few others as options:

Screenshots

Sublime's custom image
This depicts the following settings:
FlowLayoutHorizontalJustificationLeft, left section inset = 20, horizontalCellPadding = 5

Sublime's custom image
This depicts the following settings:
FlowLayoutHorizontalJustificationFull, left/right section inset = 20, horizontalCellPadding = 5

Sublime's custom image
This depicts the following settings:
FlowLayoutHorizontalJustificationRight, right section inset = 20, horizontalCellPadding = 5

Versions

1.0:
Initial version release
1.1:
Fixes issues #2, #4, and #9 (thanks a lot, Sega-Zero!!!)

Improvements

Author

Evan Roth, evanroth@me.com

License

ERJustifiedFlowLayout is available under the MIT license. See the LICENSE file for more info.