Biometrid IOS SDK
2.5.5
2.5.5
  • Introduction
  • Standard SDK
    • Prerequisites
    • Requirements
    • Initialization
    • Enums
    • Installation
      • Zip file
      • CocoaPods
    • Process Management
      • Create process
      • Get Step State
      • Update Step
      • Previous Step
    • Liveness Detection
    • Auto Capture
      • MRZ Capture
      • Configurations
    • Camera
      • Configurations
    • NFC
      • Scan Result
      • Configurations
    • Video Conference
  • FULL SDK
    • Requirements
    • Usage
    • Installation
      • Zip file
      • CocoaPods
    • Initialization
    • Start
    • Stop
    • Callbacks
Powered by GitBook
On this page

Was this helpful?

  1. FULL SDK

Callbacks

This section contains the necessary methods to implement BiometridFullCallback

Called by initialize method. Use this to observe if SDK was correctly initialized:

func initializeCallback(status: Bool, error: Errors?) -> ()

Called by internal method. Use this to observe if was correctly created a process:

func processCreatedCallback(processId: String?) -> ()

Called by internal method. Use this to observe if a process is finished:

func processFinishedCallback() -> ()

Use this to observe when the SDK start

func interfaceStartedCallback() -> ()

Use this to observe if SDK is closed

func interfaceClosedCallback() -> ()
PreviousStop

Was this helpful?