touch-id

touchIDLockout deprecated in iOS 11.0

廉价感情. 提交于 2019-11-29 11:17:08
问题 When compiling my Application with Xcode 9 for IOS11 I get the following warnings: warning: 'touchIDLockout' was deprecated in iOS 11.0: use LAErrorBiometryLockout warning: 'touchIDNotEnrolled' was deprecated in iOS 11.0: use LAErrorBiometryNotEnrolled warning: 'touchIDNotAvailable' was deprecated in iOS 11.0: use LAErrorBiometryNotAvailable I'm using touchID but I'm not using touchIdLockout...cste and the touchID is working correctly. How can I remove these warnings? Edit (not by the

Touch ID causing app to become non-responsive

冷暖自知 提交于 2019-11-29 08:35:46
问题 I Added ios-8's new touchID API to my app. It usually works as expected, BUT when entering app while my finger is already on home-button - API's success callback is called but pop-up still appears on screen. after pressing CANCEL UI becomes non-responsive. 回答1: I also encountered the same issue, and the solution was to invoke the call to the Touch ID API using a high priority queue, as well as a delay: // Touch ID must be called with a high priority queue, otherwise it might fail. // Also, a

Know which user logging into app depending on touchid in iOS

回眸只為那壹抹淺笑 提交于 2019-11-28 10:21:18
问题 In my app I am trying to detect which user is trying to log in using touchId. Is there any mechanism which can help me distinguish between users depending on touch Ids of users. 回答1: I assume that you are only assuming 1 one user per device since touch id isn't really setup for multiple users on a single device. Since you already know which device your app is running on there would be no need to get this information from TouchID. 来源: https://stackoverflow.com/questions/34613951/know-which

How to programmatically check support of 'Face Id' and 'Touch Id'

做~自己de王妃 提交于 2019-11-28 05:54:58
I've integrated LocalAuthentication for my app security purpose, which has been supporting 'Touch Id' based supporting. But now, apple has recently added 'Face Id' based authentication also. How can I check, which type of authentication is supported by a device. Touch Id or Face Id? With Xcode 9, Look at LocalAuthentication -> LAContext -> LABiometryType . LABiometryType is a enum with values as in attached image You can check which authentication type supported by device between Touch ID and FaceID or none. Edit: Apple have updated values for this enum LABiometryType . none is deprecated now

Is it possible to get TouchID information and compare to a fingerprint database?

懵懂的女人 提交于 2019-11-28 00:16:41
I know that with LocalAuthentication , it is easy to embed TouchID in an iOS app. But is it possible to get the TouchID information and compare it to other fingerprint databases? From Apple doc Touch ID doesn't store any images of your fingerprint. It stores only a mathematical representation of your fingerprint. It isn't possible for someone to reverse engineer your actual fingerprint image from this mathematical representation. The chip in your device also includes an advanced security architecture called the Secure Enclave which was developed to protect passcode and fingerprint data.

iPhone App Crash with error [UIApplication _cachedSystemAnimationFenceCreatingIfNecessary:]

眉间皱痕 提交于 2019-11-27 23:50:20
I have an iPhone App in the app store which is using Touch ID. If Touch ID is enabled, the user is authenticated with it, else user needs to enter his PIN to login to the application. After IOS 10.1 release, when I checked the crash report, the crash count has increased. From the crash report, it is pointing on [UIApplication _cachedSystemAnimationFenceCreatingIfNecessary:] and when I opened the app in Xcode, it is focussing on [self dismissViewControllerAnimated:YES completion:nil]; . The code I have written is as below: -(void) showTouchIDAuthentication{ LAContext *myContext = [[LAContext

How to programmatically check support of 'Face Id' and 'Touch Id'

谁都会走 提交于 2019-11-27 01:05:06
问题 I've integrated LocalAuthentication for my app security purpose, which has been supporting 'Touch Id' based supporting. But now, apple has recently added 'Face Id' based authentication also. How can I check, which type of authentication is supported by a device. Touch Id or Face Id? 回答1: With Xcode 9, Look at LocalAuthentication -> LAContext -> LABiometryType. LABiometryType is a enum with values as in attached image You can check which authentication type supported by device between Touch ID

Is it possible to get TouchID information and compare to a fingerprint database?

折月煮酒 提交于 2019-11-26 23:23:22
问题 I know that with LocalAuthentication , it is easy to embed TouchID in an iOS app. But is it possible to get the TouchID information and compare it to other fingerprint databases? 回答1: From Apple doc Touch ID doesn't store any images of your fingerprint. It stores only a mathematical representation of your fingerprint. It isn't possible for someone to reverse engineer your actual fingerprint image from this mathematical representation. The chip in your device also includes an advanced security