如何检查TouchID是否启用

时间:2015-04-10 08:07:53

标签: ios iphone touch-id

有没有办法检查我的应用程序是否启用了TouchID,

如何使用TouchID检查我的应用程序是否已启用

例如:

DropBox具有启用图形打印传感器功能的功能。现在有什么方法可以检查我的应用程序是否显示基于touchid启用的TouchID屏幕。

3 个答案:

答案 0 :(得分:6)

你不想检查iOS版本,当然,它可能有效,但这是一个不好的做法。请检查功能。看看LAContext是否可用。

if ([LAContext class]) {
    // touch ID is available for the device
    // call canEvaluatePolicy:error to see if the user has set a fingerprint.
}

答案 1 :(得分:5)

根据您使用 Objective-C

首先,添加检查iOS版本的方法

TouchID需要iOS8 +才能正常工作

#define SYSTEM_VERSION_EQUAL_TO(v)                  ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedSame)
#define SYSTEM_VERSION_GREATER_THAN(v)              ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedDescending)
#define SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(v)  ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedAscending)
#define SYSTEM_VERSION_LESS_THAN(v)                 ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedAscending)
#define SYSTEM_VERSION_LESS_THAN_OR_EQUAL_TO(v)     ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedDescending)

然后,使用LAContext canEvaluatePolicy:error:来评估TouchID是否存在

  

预检身份验证策略以查看身份验证是否可以成功

- (BOOL)isTouchIDAvailable {
    if (SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"8.0")) {
        return [[[LAContext alloc] init] canEvaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics error:nil];
    }
    return NO;
}

答案 2 :(得分:1)

假设ios 8+部署目标

    var authError : NSError?
    if LAContext().canEvaluatePolicy(LAPolicy.DeviceOwnerAuthenticationWithBiometrics, error: &authError) {
          // do your thing dependent on touch id being useable on the device
    }

如果你仍然需要支持ios7做额外的箍

   if NSClassFromString("LAContext") != nil && LAContext().canEvaluatePolicy(LAPolicy.DeviceOwnerAuthenticationWithBiometrics, error: &authError) {