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

Fix broken headings in Markdown files #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
Expand Up @@ -5,7 +5,7 @@ A UIView that will zoom into its parent view. It can be implemented with only th

![alt text](http://imgur.com/9eIAsbe.png "UIView that will zoom into its parent view")

##How to
## How to

Initialize the zoom view anywhere in a view.

Expand All @@ -14,12 +14,12 @@ Initialize the zoom view anywhere in a view.
[zoomView setDragingEnabled:NO];
[self.view addSubview:zoomView];

####Options:
#### Options:

1. `setZoomScale:` Here you can set the zoom value (Standard = 2.0)
2. `setDragingEnabled:` Here you can decide wether the user can drag the zoom view around or if it is static. If static, then the user can touch throuch this view which is nice if you place it over a UITableView and still want to scroll.

####Important:
#### Important:

`[zoomview setNeedsDisplay]` must be called everytime you want to update the zoom view. For example the zoom view is placed over a UITableView and you want a live zoom when scrolling, then you must implement this in the `scrollViewDidScroll:` method.
Exception here is when dragging.
Expand Down