rickytan / RTPagedCollectionViewLayout

A paged collection view layout

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

RTPagedCollectionViewLayout

CI Status Version License Platform

Usage

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

With Interface Builder

  1. Setup custom UICollectionViewLayout

    Custom Layout

  2. Setup params

    Params

With Code

- (void)viewDidLoad
{
    [super viewDidLoad];
	// Do any additional setup after loading the view, typically from a nib.
    CGFloat width = self.view.bounds.size.width;
    RTPagedCollectionViewLayout *layout = [[RTPagedCollectionViewLayout alloc] init];
    layout.columns = 3;
    layout.rows = 2;
    layout.itemSize = CGSizeMake(30, 30);
    UICollectionView *collectionView = [[UICollectionView alloc] initWithFrame:CGRectMake(0, 0, width, 240)
                                                          collectionViewLayout:layout];
    [self.view addSubview:collectionView];
}

ScreenShot

Requirements

  • iOS 6 and up

Installation

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

pod "RTPagedCollectionViewLayout"

Author

Ricky Tan, ricky.tan.xin@gmail.com

License

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

About

A paged collection view layout

License:MIT License


Languages

Language:Objective-C 86.3%Language:Ruby 13.7%