KRLCollectionViewGridLayout

A UICollectionViewLayout that specifies item size and location by number of columns.

163
22
Objective-C

KRLCollectionViewGridLayout

Build Status
Version
codecov.io
Carthage compatible
License
Platform

This layout is an alternative to UICollectionViewFlowLayout that positions and sizes items using a defined number of columns and an aspect ratio property which force the size of cells, rather than the cells’ size telling the layout how to position them (in the way UICollectionViewFlowLayout behaves). By default, this will always show the same number of items in a row no matter how large or small the collection view is.

You can specify the number of items per line and the desired aspect ratio of all items (which is always width / height, regardless of scroll direction):

layout.numberOfItemsPerLine = 5;
layout.aspectRatio = 16.0/9.0;

You can specify metrics similar to UICollectionViewFlowLayout, like so:

layout.sectionInset = UIEdgeInsetsMake(10,20,30,40);
layout.interitemSpacing = 15;
layout.lineSpacing = 5;
layout.scrollDirection = UICollectionViewScrollDirectionVertical;

You can also add headers and footers to each section similar to UICollectionViewFlowLayout:

layout.headerReferenceLength = 44;
layout.footerReferenceLength = 100;

In vertical scrolling mode, length is the height of the header/footer. In horizontal scrolling mode, length is the width of the header/footer.
A length of 0 in these dimensions will not try to create a view.

All of the above properties (except for scrollDirection) can be configured on a per-section basis using KRLCollectionViewDelegateGridLayout. Have your view controller or other object that implements the regular UICollectionViewDelegate also implement this protocol to make these per-section variances for these properties happen.

Usage

To run the example project, clone the repo, and run pod install from the Example directory first.
You can either run unit tests on the library itself, or run the sample project for a visual demonstration.

Requirements

  • iOS 6.0
  • tvOS 9.0

Example project requires Xcode 8.0+, can only run in iOS 8.0+ or tvOS 9.0+.

Installation

CocoaPods

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

pod "KRLCollectionViewGridLayout", "~> 1.0.0"

Carthage

You can also install it via Carthage. To do so, add the following to your Cartfile:

github "klundberg/KRLCollectionViewGridLayout" ~> 1.0.0

Author

Kevin Lundberg, kevin at klundberg dot com

Contributions

Pull requests are welcome! Please include unit tests for any bugfixes or new features.

License

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