淺析IOS開發TouchID指紋解鎖功能_IOS

來源:互聯網
上載者:User

效果圖如下

實現過程

1.首先引入指紋解鎖必須的標頭檔

#import <LocalAuthentication/LocalAuthentication.h>

2.瞭解下主要的兩個方法
這個方法是判斷裝置是否支援TouchID的。

- (BOOL)canEvaluatePolicy:(LAPolicy)policy error:(NSError * __autoreleasing *)error __attribute__((swift_error(none)));

這個是用來驗證TouchID的,會有彈出框出來。

- (void)evaluatePolicy:(LAPolicy)policy  localizedReason:(NSString *)localizedReason     reply:(void(^)(BOOL success, NSError * __nullable error))reply;

3.建立LAContext對象

主要的屬性設定

localizedFallbackTitle:用於設定左邊的按鈕的名稱,預設是Enter Password.

localizedReason:用於設定提示,表示為什麼要使用Touch ID


解鎖失敗介面

 //建立LAContext LAContext *context = [LAContext new];  //這個屬性是設定指紋輸入失敗之後的彈出框的選項 context.localizedFallbackTitle = @"沒有忘記密碼";

4.主要回調方法,包括成功以及失敗的

NSError *error = nil; if ([context canEvaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics error:&error]) {  NSLog(@"支援指紋識別");  [context evaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics localizedReason:@"指紋解鎖" reply:^(BOOL success, NSError * _Nullable error) {   if (success) {    NSLog(@"驗證成功 重新整理主介面");   }else{    NSLog(@"%@",error.localizedDescription);    switch (error.code) {     case LAErrorSystemCancel:     {      NSLog(@"系統取消授權,如其他APP切入");      break;     }     case LAErrorUserCancel:     {      NSLog(@"使用者取消驗證Touch ID");      break;     }     case LAErrorAuthenticationFailed:     {      NSLog(@"授權失敗");      break;     }     case LAErrorPasscodeNotSet:     {      NSLog(@"系統未設定密碼");      break;     }     case LAErrorTouchIDNotAvailable:     {      NSLog(@"裝置Touch ID不可用,例如未開啟");      break;     }     case LAErrorTouchIDNotEnrolled:     {      NSLog(@"裝置Touch ID不可用,使用者未錄入");      break;     }     case LAErrorUserFallback:     {      [[NSOperationQueue mainQueue] addOperationWithBlock:^{       NSLog(@"使用者選擇輸入密碼,切換主線程處理");      }];      break;     }     default:     {      [[NSOperationQueue mainQueue] addOperationWithBlock:^{       NSLog(@"其他情況,切換主線程處理");      }];      break;     }    }   }  }]; }else{  NSLog(@"不支援指紋識別");  switch (error.code) {   case LAErrorTouchIDNotEnrolled:   {    NSLog(@"TouchID is not enrolled");    break;   }   case LAErrorPasscodeNotSet:   {    NSLog(@"A passcode has not been set");    break;   }   default:   {    NSLog(@"TouchID not available");    break;   }  }  NSLog(@"%@",error.localizedDescription); }

總結

到這裡指紋解鎖功能幾乎就算完成,使用確實很簡單,因為蘋果都已經給我們做好一切,對我們開發人員來說就很輕鬆了。教程寫的很簡陋,希望大家多多包涵,如果有疑問大家可以留言交流。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.