ID Capture Listener
Defined in framework ScanditIdCapture
- IdCaptureListener
protocol IdCaptureListener : NSObjectProtocol
Added in version 6.2.0
Delegate protocol for id capture.
- idCapture(_:didCapture:)
open func idCapture(_ idCapture: IdCapture, didCapture capturedId: CapturedId) ->
VoidAdded in version 7.0.0
Called whenever a document is recognized and parsed.
Set IdCapture.isEnabled to false at the start of this callback to prevent additional captures while the result is being handled, and restore it to true when processing is complete. This method is called on a background thread — dispatch any UI work to the main thread.
- idCapture(_:didReject:reason:)
open func idCapture(_ idCapture: IdCapture, didReject capturedId: CapturedId?, reason rejectionReason: RejectionReason) ->
VoidAdded in version 7.0.0
Called whenever a personal identification document or its part is recognized in a frame, but rejected. A document is rejected if (a) it’s not enabled in the settings, (b) it’s a barcode of a correct symbology or a Machine Readable Zone (MRZ), but the data is encoded in an unexpected/incorrect format, (c) it meets the requirement of a rejection rule defined in the settings (for instance, voided ID rejection or expired ID rejection).
This method is called on a background thread — dispatch any UI work to the main thread.