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

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 @@
ASValueTrackingSlider
========

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


A UISlider subclass that displays live values in an easy to customize popup view.
Expand Down Expand Up @@ -69,7 +69,7 @@ self.slider.font = [UIFont fontWithName:@"Futura-CondensedExtraBold" size:26];
The popUpView adjusts itself so that it doesn't extend beyond the width of the slider control.


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

Set your controller as the `dataSource` to `ASValueTrackingSlider` and adopt the `ASValueTrackingSliderDataSource`, then return NSStrings for any values you want to customize.

Expand All @@ -94,7 +94,7 @@ Set your controller as the `dataSource` to `ASValueTrackingSlider` and adopt the
![screenshot] (http://alskipp.github.io/ASValueTrackingSlider/img/screenshot4.png)


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

To use effectively inside a UITableView you need to implement the `<ASValueTrackingSliderDelegate>` protocol. If you just embed an ASValueTrackingSlider 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