Elegant and Easy-to-Use library for iOS Biometric (TouchId and FaceId) authentication.
- Objective C Support [See How to use in Objective C Heading of this file]
Add RBiometricClasses folder into your project. You are ready to go!
To open biometric authentication
RBiometric.show()
To handle success case
RBiometric.shared.onAuthSuccess = { [weak self] in
//success authentication
}
To handle error case
RBiometric.shared.onAuthError = { [weak self] (error) in
if error == .userCancel {
RBiometric.dismissBiometric()
}
}
To open biometric authentication
[RBiometric show];
To handle success case
RBiometric.shared.onAuthSuccess = ^{
// on success
};
- If you found a bug, open an issue.
- If you want to contribute, submit a pull request.
RPicker is available under the MIT license. See the LICENSE file for more info.
- RPicker:- Elegant and Easy-to-Use Date and Options Picker.
- RFirebaseMessaging:- Project provides basic idea and approach for building small social media application using firebase and implementing chat using Firebase.
- RBeacon:- Sample project for turning android device into a Beacon device. App can work as both broadcaster and receiver.
- RPdfGenerator:- A sample project to generate PDF file from data using itextpdf/itext7 library.