Skip to content
This repository has been archived by the owner on Oct 10, 2018. It is now read-only.

Commit

Permalink
README.md updated
Browse files Browse the repository at this point in the history
  • Loading branch information
darrarski committed Jun 18, 2015
1 parent 7a93b79 commit eae3bec
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,7 @@ DRCollectionViewTableLayout

`UICollectionViewLayout` for displaying 2D tables, similar to those in spreadsheets. Library contains layout class and `DRCollectionViewTableLayoutManager` that acts as a proxy and allows to configure collection view, and propagate it with data in easy way. For example implementation, checkout attached demo project.

Tested under iOS 7, should work on iOS 6 (check [reported issues](../../issues?labels=iOS+6) if you are planning to support iOS 6). If you are looking for specific version of the library, checkout those branches:

- For development version - [master branch](../../tree/master)
- For v1.x.y - [branch v1](../../tree/v1)
Tested under iOS 7, should work on iOS 6 (check [reported issues](../../issues?labels=iOS+6) if you are planning to support iOS 6).

Demo project is configured to display a table with column and row headers. Each cell has randomly generated color. Labels in cells contains `UICollectionView` indexPath for given cell, as well as layout's column and row number. Labels in headers contains `UICollectionView` section number, and layout's column/row number.

Expand All @@ -22,15 +19,15 @@ You can install the library using CocoaPods. To do so, you will need to add one

For stable release (recommended):

pod 'DRCollectionViewTableLayout', '~> 1.0.2'
pod 'DRCollectionViewTableLayout', '~> 1.0.3'

Which creates dependency for version `>= 1.0.2` and `< 1.1`
Which creates dependency for version `>= 1.0.3` and `< 1.1`

For most recent or exact development version (not recommended on production):

pod 'DRCollectionViewTableLayout', :git => 'https://github.com/darrarski/DRCollectionViewTableLayout-iOS', :branch => 'VERSION_BRANCH'

Where `VERSION_BRANCH` you should put the branch name for given version (ex. "v1"). It is recommended to set version branch explicity, as backward compatibility between those branches is not warranted. Master branch always contains the most recent version.
pod 'DRCollectionViewTableLayout', :git => 'https://github.com/darrarski/DRCollectionViewTableLayout-iOS.git', :tag => 'VERSION_TAG'
Where `VERSION_TAG` you should put tag name for given version (ex. "1.0.3"). It is recommended to set version explicity instead of using most recent version, as backward compatibility is not warranted.

## Usage

Expand Down

0 comments on commit eae3bec

Please sign in to comment.