contact Us
whatsapp icon
Authentication using fingerprint in your iOS application
Mobile App Development

Authentication using fingerprint in your iOS application

Written By

Nikhil Solanki

Mobile Lead at Manek Tech

Updated

April 24, 2024

Read

1 Min

Table of Contents

Authentication for iPhone Application (Using Touch ID and Face ID)

  • Nowadays most of the applications require authentication in the mobile domain for device owners to verify their identity by TouchID or FaceID.
  • And users also want to secure their data from anonymous user.
  • Apple introduced biometric authentication fingerprint scanner technology in the iPhone 5s to allow users to unlock their devices and after that apple introduced iPhone X and iOS 11 biometric authentication using facial recognition.
  • The TouchID/FaceID is on a new framework Local Authentication, It’s necessary to say that this framework provides facilities for requesting authentication from users with specified securities policies.
  • Local Authentication framework provide a custom-made view for users can enter credentials using TouchID or FaceID.
  • So we create a very simple file for authentication of your application and it is very easy to use just follow below steps.

Requirements

  1. Swift 3.0+
  2. iOS 8.0+
  3. Xcode 8+
     

How to use iPhone Application?

Step-1: just drag and drop MTFingerPrint.swift into your project folder.

Step-2: Local Authentication Framework
Select Project -> Targets -> Linked Frameworks and Libraries -> Add LocalAuthentication.framework

Step-3: Add following code into the viewDidLoad method of view-controller file where you want to add authentication.

MTFingerPrint.sharedInstance.authenticationWithTouchID()
MTFingerPrint.sharedInstance.delegate = self

Step-4: Add following delegate method into your view-controller file

extension yourViewControllerName : FingerPrintDelegate {

func fingPrintSuccess() {

if DeviceType.IS_IPHONE_X {

DispatchQueue.main.async {
print("Face ID is verified.")
} } else {
DispatchQueue.main.async {
print("Touch ID is verified.")
}}}

func fingerPrintFailed() {

if DeviceType.IS_IPHONE_X {

DispatchQueue.main.async {
print("Face ID is not verified.")
}
} else {
DispatchQueue.main.async {
print("Touch ID is not verified.")
}}}

func fingerPrintNotAvailable() {

if DeviceType.IS_IPHONE_X {

//self.faceSettingAlert()

} else {

//self.fingSettingAlert()

}}}

iPhone Device Screenshot

iPhone Device Screenshot

iPhoneX Device Screenshot

iPhoneX Device Screenshot

Need Expert Guidance?

Talk to our experts and get recommendations tailored to your project.

About the Author

Nikhil Solanki

Mobile Lead at Manek Tech

Nikhil Solanki has 10+ years of experience in App Development and currently works as the Mobile Lead at ManekTech. He is an experienced Mobile lead with a demonstrated history of working in Mobile's information technology and services industry.

More articles on the topic

Mobile App Development Firebase Analytics In Mobile App

An app's user base using Firebase Analytics, a free and unlimited analytics solution. You'll be able to learn who your users are and how they interact with your app.

7 Min ReadFeb 27, 24

Nikhil Solanki

Nikhil Solanki

Mobile Lead at Manek Tech

DevOps Consider These Top 4 Data Visualization Tools

Data Visualization technologies provide us with a proliferation of insights into the data obtained. Google and Microsoft, for instance, gather and utilize Big Data to shape the future of their commercial operations.

4 Min ReadFeb 29, 24

Ruchir Pandya

Ruchir Pandya

Delivery Head of Web at Manek Tech