iOS 指紋解鎖 驗證TouchID,iostouchid

來源:互聯網
上載者:User

iOS 指紋解鎖 驗證TouchID,iostouchid
iOS指紋解鎖

1、首先,引入依賴架構 LocalAuthentication.framework

#import <LocalAuthentication/LocalAuthentication.h>

2、然後,判斷系統是否為iOS8及以上

//iOS8.0後才支援指紋識別介面    if ([UIDevice currentDevice].systemVersion.floatValue < 8.0) {        return;    }

3、最後,在APP啟動時調用以下方法即可完成指紋解鎖的全部功能整合

- (void)evaluateAuthenticate{    //建立LAContext    LAContext* context = [[LAContext alloc] init];    NSError* error = nil;    NSString* result = @"請驗證已有指紋";        //首先使用canEvaluatePolicy 判斷裝置支援狀態    if ([context canEvaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics error:&error]) {        //支援指紋驗證        [context evaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics localizedReason:result reply:^(BOOL success, NSError *error) {            if (success) {                //驗證成功,主線程處理UI            }            else            {                NSLog(@"%@",error.localizedDescription);                switch (error.code) {                    case LAErrorSystemCancel:                    {                        //系統取消授權,如其他APP切入                        break;                    }                    case LAErrorUserCancel:                    {                        //使用者取消驗證Touch ID                        break;                    }                    case LAErrorAuthenticationFailed:                    {                        //授權失敗                        break;                    }                    case LAErrorPasscodeNotSet:                    {                        //系統未設定密碼                        break;                    }                    case LAErrorTouchIDNotAvailable:                    {                        //裝置Touch ID不可用,例如未開啟                        break;                    }                    case LAErrorTouchIDNotEnrolled:                    {                        //裝置Touch ID不可用,使用者未錄入                        break;                    }                    case LAErrorUserFallback:                    {                        [[NSOperationQueue mainQueue] addOperationWithBlock:^{                            //使用者選擇輸入密碼,切換主線程處理                                                    }];                        break;                    }                    default:                    {                        [[NSOperationQueue mainQueue] addOperationWithBlock:^{                            //其他情況,切換主線程處理                        }];                        break;                    }                }            }        }];    }    else    {        //不支援指紋識別,LOG出錯誤詳情        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.