我在我的应用中添加了ios-8的新touchID API。 它通常按预期工作,但在我的手指已经在主页按钮时输入应用程序 - API的成功回调被调用但弹出窗口仍然出现在屏幕上。按下CANCEL后,UI变得无响应。
答案 0 :(得分:23)
我也遇到了同样的问题,解决方案是使用高优先级队列调用Touch ID API,以及延迟:
// Touch ID must be called with a high priority queue, otherwise it might fail.
// Also, a dispatch_after is required, otherwise we might receive "Pending UI mechanism already set."
dispatch_queue_t highPriorityQueue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0);
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.75 * NSEC_PER_SEC), highPriorityQueue, ^{
LAContext *context = [[LAContext alloc] init];
NSError *error = nil;
// Check if device supports TouchID
if ([context canEvaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics error:&error]) {
// TouchID supported, show it to user
[context evaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics
localizedReason:@"Unlock Using Touch ID"
reply:^(BOOL success, NSError *error) {
if (success) {
// This action has to be on main thread and must be synchronous
dispatch_async(dispatch_get_main_queue(), ^{
...
});
}
else if (error) {
...
}
}];
}
});
在测试我们的应用时,我们发现延迟750毫秒是最佳的,但您的里程可能会有所不同。
更新(2015年10月3日):有几个iOS开发人员,例如1Password,are reporting iOS 8.2已经解决了这个问题。
答案 1 :(得分:7)
虽然使用延迟可以解决问题,但它掩盖了根本原因。您需要确保在“应用程序状态”处于活动状态时仅显示“触摸ID”对话框。如果在启动过程中立即显示它(意味着应用程序在技术上仍处于非活动状态),则可能会出现这些类型的显示问题。这还没有记录,我发现这很困难。提供延迟似乎可以解决问题,因为到那时你的应用程序处于活动状态,但这并不是保证。
要确保它在应用程序处于活动状态时运行,您可以检查当前的应用程序状态,并立即运行它,或者在我们收到applicationDidBecomeActive通知时运行它。请参阅下面的示例:
- (void)setup
{
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(applicationDidBecomeActive:)
name:UIApplicationDidBecomeActiveNotification
object:nil];
}
- (void)dealloc
{
[[NSNotificationCenter defaultCenter] removeObserver:self];
}
- (void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
// We need to be in an active state for Touch ID to play nice
// If we're not, defer the presentation until we are
if([UIApplication sharedApplication].applicationState == UIApplicationStateActive)
{
[self presentTouchID];
}
else
{
__weak __typeof(self) wSelf = self;
_onActiveBlock = ^{
[wSelf presentTouchID];
};
}
}
-(void)applicationDidBecomeActive:(NSNotification *)notif
{
if(_onActiveBlock)
{
_onActiveBlock();
_onActiveBlock = nil;
}
}
- (void)presentTouchID
{
_context = [[LAContext alloc] init];
_context.localizedFallbackTitle = _fallbackTitle;
[_context evaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics
localizedReason:_reason
reply: ^(BOOL success, NSError *authenticationError)
{
// Handle response here
}];
}
答案 2 :(得分:1)
这个接受的答案没有解决问题的根本原因:两次调用evaluatePolicy(),第二次调用正在进行时。因此,目前的解决方案有时只能运气,因为一切都是时间依赖的。
解决问题的一种蛮力,直接的方法是一个简单的布尔标志,以防止后续调用在第一次完成之前发生。
AppDelegate *delegate = [[UIApplication sharedApplication] delegate];
if ( NSClassFromString(@"LAContext") && ! delegate.touchIDInProgress ) {
delegate.touchIDInProgress = YES;
LAContext *localAuthenticationContext = [[LAContext alloc] init];
__autoreleasing NSError *authenticationError;
if ([localAuthenticationContext canEvaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics error:&authenticationError]) {
[localAuthenticationContext evaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics localizedReason:kTouchIDReason reply:^(BOOL success, NSError *error) {
delegate.touchIDInProgress = NO;
if (success) {
...
} else {
...
}
}];
}
答案 3 :(得分:0)
我开始设置" Pending UI机制已经设置好了。"也提到错误,所以我决定看看其他应用是否受到影响。我为Touch ID设置了Dropbox和Mint。果然Touch ID也不适用于他们,他们又回到了密码。
我重新启动了手机,它又开始工作了,所以看起来Touch ID可能会出错并停止工作。我在iOS 8.2 btw。
我想处理这种情况的正确方法就像那些应用程序那样,并回退到密码/密码。