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

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
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Easy drop-in component for iOS developers to deal easy with PIN (4 digit passcode) logic.
This is the first version but we truly tried to make it reusable and customizable enough to save development time.

###How to Use:
### How to Use:
1) Subclass APPinViewController:

@interface SamplePinViewController : APPinViewController
Expand All @@ -12,7 +12,7 @@ This is the first version but we truly tried to make it reusable and customizabl

..and this is it.

####To Set PIN:
#### To Set PIN:
SamplePinViewController *pinVC = [SamplePinViewController new];
[self.navigationController pushViewController:pinVC animated:YES];

Expand All @@ -24,7 +24,7 @@ Delegate:
[self.navigationController popViewControllerAnimated:YES];
}

####To Verify PIN:
#### To Verify PIN:

SamplePinViewController *pinVC = [SamplePinViewController new];
pinVC.pinCodeToCheck = <#Your Pin To Verify#>;
Expand All @@ -37,7 +37,7 @@ Delegate:
[self.navigationController popViewControllerAnimated:YES];
}

####To Change PIN:
#### To Change PIN:

SamplePinViewController *pinVC = [SamplePinViewController new];
pinVC.pinCodeToCheck = <#Your Pin To Change#>;
Expand All @@ -56,13 +56,13 @@ Delegate:

- (void)pinCodeViewController:(APPinViewController *)controller didFailVerificationWithCount:(NSUInteger)failsCount;

####...and One More Thing:
#### ...and One More Thing:
You can feel free to customize pin view by changing its frame and position and set image for pins:

self.pinCodeView.selectedPinImage = <#Your UIImage#>
self.pinCodeView.normalPinImage = <#Your UIImage#>

####Example screenshots:
#### Example screenshots:

<table border-width=0><tr>
<td><img width=320 src="https://dl.dropboxusercontent.com/u/11819370/APPin/screen1.png"></td>
Expand Down