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 #15

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
@@ -1,7 +1,7 @@
ASProgressPopUpView
========

###What is it?
### What is it?


A UIProgressView subclass that displays the percentage complete in an easy to customize popUpView.
Expand Down Expand Up @@ -68,7 +68,7 @@ You update the value exactly as you would normally use a UIProgressView, just up
With `version 0.7.1` and above, the animated progress method is supported `- (void)setProgress:(float)progress animated:(BOOL)animated`. When updating the progress in increments `> 0.05` the results will be much smoother using the animated form.


###How to use custom strings in popUpView label
### How to use custom strings in popUpView label

Set your controller as the `dataSource` to `ASProgressPopUpView`, then return NSStrings for any progress values you want to customize.

Expand All @@ -92,7 +92,7 @@ Set your controller as the `dataSource` to `ASProgressPopUpView`, then return NS
![screenshot] (http://alskipp.github.io/ASProgressPopUpView/img/screenshot3.png)


###How to use with UITableView
### How to use with UITableView

To use effectively inside a UITableView you need to implement the `<ASProgressPopUpViewDelegate>` protocol. If you just embed an ASProgressPopUpView inside a UITableViewCell the popUpView will probably be obscured by the cell above. The delegate method notifies you before the popUpView appears so that you can ensure that your UITableViewCell is rendered above the others.

Expand Down