-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
22 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# TNKImagePickerController | ||
|
||
[![CI Status](http://img.shields.io/travis/David Beck/TNKImagePickerController.svg?style=flat)](https://travis-ci.org/David Beck/TNKImagePickerController) | ||
[![Carthage compatible](https://img.shields.io/badge/carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage) | ||
[![Version](https://img.shields.io/cocoapods/v/TNKImagePickerController.svg?style=flat)](http://cocoadocs.org/docsets/TNKImagePickerController) | ||
[![License](https://img.shields.io/cocoapods/l/TNKImagePickerController.svg?style=flat)](http://cocoadocs.org/docsets/TNKImagePickerController) | ||
[![Platform](https://img.shields.io/cocoapods/p/TNKImagePickerController.svg?style=flat)](http://cocoadocs.org/docsets/TNKImagePickerController) | ||
|
@@ -54,11 +54,32 @@ Your delegate should impliment the following methods in order to get the image a | |
|
||
## Installation | ||
|
||
### Cocoapods | ||
|
||
TNKImagePickerController is available through [CocoaPods](http://cocoapods.org). To install | ||
it, simply add the following line to your Podfile: | ||
|
||
pod "TNKImagePickerController", "~> 0.2" | ||
|
||
### Carthage | ||
|
||
[Carthage](https://github.com/Carthage/Carthage) is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks. | ||
|
||
You can install Carthage with [Homebrew](http://brew.sh/) using the following command: | ||
|
||
```bash | ||
$ brew update | ||
$ brew install carthage | ||
``` | ||
|
||
To integrate TNKImagePickerController into your Xcode project using Carthage, specify it in your `Cartfile`: | ||
|
||
```ogdl | ||
github "davbeck/TNKImagePickerController" ~> 0.2 | ||
``` | ||
|
||
Run `carthage` to build the framework and drag the built `TNKImagePickerController.framework` into your Xcode project. | ||
|
||
## Author | ||
|
||
David Beck, [email protected] | ||
|