https://github.com/irons163/irpasscode
IRPasscode is a powerful passcode for iOS.
https://github.com/irons163/irpasscode
4digit 4pin fingerprint ios keychain objective-c passcode
Last synced: 5 months ago
JSON representation
IRPasscode is a powerful passcode for iOS.
- Host: GitHub
- URL: https://github.com/irons163/irpasscode
- Owner: irons163
- License: mit
- Created: 2019-12-09T06:45:32.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-02-04T02:30:13.000Z (almost 5 years ago)
- Last Synced: 2025-08-14T06:06:32.802Z (5 months ago)
- Topics: 4digit, 4pin, fingerprint, ios, keychain, objective-c, passcode
- Language: Objective-C
- Homepage:
- Size: 4.13 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README


# IRPasscode
- IRPasscode is a powerful passcode for iOS.
## Features
- 4 Pin support.
- FingerPrint support.
- High Security - KeyChain support.
## Install
### Git
- Git clone this project.
- Copy this project into your own project.
- Add the .xcodeproj into you project and link it as embed framework.
#### Options
- You can remove the `demo` and `ScreenShots` folder.
### Cocoapods
- Add `pod 'IRPasscode'` in the `Podfile`
- `pod install`
## Usage
### Basic
- Open `Passcode Setting Page`.
```obj-c
#import
NSBundle *xibBundle = [NSBundle bundleForClass:[IRPasscodeLockSettingViewController class]];
IRPasscodeLockSettingViewController *vc = [[IRPasscodeLockSettingViewController alloc] initWithNibName:@"IRPasscodeLockSettingViewController" bundle:xibBundle];
[self.navigationController pushViewController:vc animated:YES];
```
- Open `Passcode verify page`.
```obj-c
if ([IRSecurityPinManager sharedInstance].pinCode)
[[IRSecurityPinManager sharedInstance] presentSecurityPinViewControllerForUnlockWithAnimated:YES completion:nil result:nil];
```
## Screenshots
| Demo | Passcode Settings |
|:---:|:---:|
|  |  |
| Set Passcode | Confirm Passcode |
|  |  |
| Confirm Passcode Fail | Change Passcode |
|  |  |
| Unlock Passcode | Demo Private Data |
|  |  |