From e2856e784decde4b61e9f79ef93f9c2a4cd5598e Mon Sep 17 00:00:00 2001 From: Santiago Castro Date: Sun, 16 Apr 2017 21:44:16 -0300 Subject: [PATCH] Fix broken Markdown headings --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7b76925..6a4c233 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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. @@ -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 `` 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.