Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #1

Merged
merged 1 commit into from
May 18, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<p align="center">
<img src="http://martinrechsteiner.com/parchment/5R993wsyGB.png" width="360" height="120" />
<img src="http://martinrechsteiner.com/parchment/JW1fAVsH25.png" width="360" height="120" />
</p>

<p align="center">
Expand All @@ -17,7 +17,7 @@

Parchment is a framework for paging between view controllers while showing menu items along with the content. It's build to be very customizable, written fully in Swift, and comes with very good default behaviors.

## Usage
## Getting Started

The easiest way to use Parchment is to use `FixedPagingViewController`. Just pass in an array of view controllers and it’ll set up everything for you.

Expand All @@ -39,7 +39,7 @@ view.addSubview(pagingViewController.view)
pagingViewController.didMoveToParentViewController(self)
```

Parchment will then generate menu items for each view controller using their title property. You can customize how the menu items will look, or even create your completely custom subclass. See [Customization]().
Parchment will then generate menu items for each view controller using their title property. You can customize how the menu items will look, or even create your completely custom subclass. See [Customization](#customization).

_Check out `ViewController.swift` in the Example target for more details._

Expand Down