生活成长史技术诗酒趁年华

iOS Touch ID指纹识别(支付)

2016-08-10  本文已影响2563人  楚简约

指纹识别功能是iphone 5S之后推出的.SDK是iOS 8.0推出!

推出指纹识别功能的目的,是为了简化移动支付环节,占领移动支付市场.

虽然安装iOS 7系统的5s机型可以使用系统提供的指纹解锁功能,但由于API并未开放,所以理论上第三方软件不可使用。

指纹验证功能的最低硬件支持为iPhone5s,iPad 6,iPad mini 3这些有touch ID硬件支持的设备。

在指纹验证代码实现方面,首先需要导入依赖框架LocalAuthentication.framework

#import<LocalAuthentication/LocalAuthentication.h>

注意:做iOS 8以下版本适配时,务必进行API验证,避免调用相关API引起崩溃。

- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event
{
    // iOS 8及以上版本执行-(void)authenticateUser方法,方法自动判断设备是否支持和开启Touch ID
    if ([[UIDevice currentDevice].systemVersion doubleValue] > 8.0) {
        NSLog(@"你的系统满足条件");
        
        // 判断是否开启指纹验证功能
        LAContext *context = [[LAContext alloc] init];
        // Evaluate: 评估,评价
        // policy: 政策,方法
        if ([context canEvaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics error:nil]) {
            NSLog(@"你的设备开启了指纹验证功能");
            
            [context evaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics localizedReason:@"利用他解锁(支付)" reply:^(BOOL success, NSError * _Nullable error) {
                
                if (success) {
                    NSLog(@"验证成功");
                    //验证成功,主线程处理UI
                }
                if (error.code == -2) {
                    NSLog(@"用户取消了操作:%@",error);
                }
                
                if (error.code != -2) {
                    NSLog(@"验证失败:%@",error);
                }

            }];
 
        } else {
            NSLog(@"你的设备没有开启");
        }

    } else {
        NSLog(@"你的系统不满足条件");
    }
}

从性能上面考虑if-else分支语句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;
            }
        }

error.code 错误信息

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 9加入了三种新的错误类型。

 /// Authentication was not successful, because there were too many failed Touch ID attempts and
    /// Touch ID is now locked. Passcode is required to unlock Touch ID, e.g. evaluating
    /// LAPolicyDeviceOwnerAuthenticationWithBiometrics will ask for passcode as a prerequisite.
    LAErrorTouchIDLockout   NS_ENUM_AVAILABLE(10_11, 9_0) = kLAErrorTouchIDLockout,

    /// Authentication was canceled by application (e.g. invalidate was called while
    /// authentication was in progress).
    LAErrorAppCancel        NS_ENUM_AVAILABLE(10_11, 9_0) = kLAErrorAppCancel,

    /// LAContext passed to this call has been previously invalidated.
    LAErrorInvalidContext   NS_ENUM_AVAILABLE(10_11, 9_0) = kLAErrorInvalidContext

其中,LAErrorTouchIDLockout是在8.0中也会出现的情况,但并未归为单独的错误类型,这个错误出现,源自用户多次连续使用Touch ID失败,Touch ID被锁,需要用户输入密码解锁,这个错误的交互LocalAuthentication.framework已经封装好了,不需要开发者关心。

LAErrorAppCancel和LAErrorSystemCancel相似,都是当前软件被挂起取消了授权,但是前者是用户不能控制的挂起,例如突然来了电话,电话应用进入前台,APP被挂起。后者是用户自己切到了别的应用,例如按home键挂起。

LAErrorInvalidContext很好理解,就是授权过程中,LAContext对象被释放掉了,造成的授权失败。

苹果iOS Touch ID指纹识别(支付).png

我是楚简约,感谢您的阅读,

喜欢就点个赞呗,“❤喜欢”,

鼓励又不花钱,你在看,我就继续写~

非简书用户,可以点右上角的三个“...”,然后"在Safari中打开”,就可以点赞咯~


上一篇下一篇

猜你喜欢

热点阅读