touchid

  1. Alexander Stolte

    iOS Tutorial Use Face ID Touch ID and Passcode

    This is a short tutorial/code snippet on how to successfully implement Touch ID in your app. Thanks to @Semen Matusovskiy for his code. You need this OBJC Code #IF OBJC #import <LocalAuthentication/LocalAuthentication.h> - (void) authenticateButtonTapped { __result = -1; LAContext...
  2. M

    iOS Question [SOLVED] TouchID / FaceID Objective C error

    Hi, i'm trying to change this objective C code: #If OBJC #import <LocalAuthentication/LocalAuthentication.h> -(void)TouchID :(NSObject*)handler :(NSString*)subnameok :(NSString*)subnamefail :(NSString*)reason { LAContext *myContext = [[LAContext alloc] init]; NSError *authError = nil; NSString...
Top