iOS---Touch ID於密碼的簡易開發教程

支持系統和機型:

iOS系統的指紋識別功能最低支持的機型爲iPhone 5s,最低支持系統爲iOS 8,雖然安裝iOS 7系統的5s機型可以使用系統提供的指紋解鎖功能,但由於API並未開放,所以理論上第三方軟件不可使用。

依賴框架:

LocalAuthentication.framework

#import <LocalAuthentication/LocalAuthentication.h>

注意事項:iOS 8以下版本適配時,務必進行API驗證,避免調用相關API引起崩潰。

使用類:LAContext 指紋驗證操作對象

代碼:

- (void)authenticateUser
{
    //初始化上下文對象
    LAContext* context = [[LAContext alloc] init];
    //錯誤對象
    NSError* error = nil;
    NSString* result = @"Authentication is needed to access your notes.";

    //首先使用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:
                    {
                        NSLog(@"Authentication was cancelled by the system");
                        //切換到其他APP,系統取消驗證Touch ID
                        break;
                    }
                    case LAErrorUserCancel:
                    {
                        NSLog(@"Authentication was cancelled by the user");
                        //用戶取消驗證Touch ID
                        break;
                    }
                    case LAErrorUserFallback:
                    {
                        NSLog(@"User selected to enter custom password");
                        [[NSOperationQueue mainQueue] addOperationWithBlock:^{
                            //用戶選擇輸入密碼,切換主線程處理
                        }];
                        break;
                    }
                    default:
                    {
                        [[NSOperationQueue mainQueue] addOperationWithBlock:^{
                           //其他情況,切換主線程處理 
                        }];
                        break;
                    }
                }
            }
        }];
    }
    else
    {
        //不支持指紋識別,LOG出錯誤詳情

        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);
        [self showPasswordAlert];
    }
}

typedef NS_ENUM(NSInteger, LAError)
{
    //授權失敗
    LAErrorAuthenticationFailed = kLAErrorAuthenticationFailed,

    //用戶取消Touch ID授權
    LAErrorUserCancel           = kLAErrorUserCancel,

    //用戶選擇輸入密碼
    LAErrorUserFallback         = kLAErrorUserFallback,

    //系統取消授權(例如其他APP切入)
    LAErrorSystemCancel         = kLAErrorSystemCancel,

    //系統未設置密碼
    LAErrorPasscodeNotSet       = kLAErrorPasscodeNotSet,

    //設備Touch ID不可用,例如未打開
    LAErrorTouchIDNotAvailable  = kLAErrorTouchIDNotAvailable,

    //設備Touch ID不可用,用戶未錄入
    LAErrorTouchIDNotEnrolled   = kLAErrorTouchIDNotEnrolled,
} NS_ENUM_AVAILABLE(10_10, 8_0);

操作流程:首先判斷系統版本,iOS 8及以上版本執行-(void)authenticateUser方法,方法自動判斷設備是否支持和開啓Touch ID

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章