Barcode Pick Action Listener

Defined in framework ScanditBarcodeCapture

Note

Barcode Pick is still in beta and may change in future versions of Scandit Data Capture SDK.

BarcodePickActionListener
protocol BarcodePickActionListener : NSObjectProtocol

Added in version 6.19.0

Will be notified when an action is performed by the user.

didPickItem
open func didPickItem(withData data: String) async -> Bool

Added in version 6.19.0

This method will be called when the user taps on a code that is not picked.

didPickItem
open func didPickItem(withData data: String, completionHandler: @escaping @Sendable (Bool) -> Void) -> Void

Added in version 6.19.0

This method will be called when the user taps on a code that is not picked.

didUnpickItem
open func didUnpickItem(withData data: String) async -> Bool

Added in version 6.19.0

This method will be called when the user taps on a code that is already picked.

didUnpickItem
open func didUnpickItem(withData data: String, completionHandler: @escaping @Sendable (Bool) -> Void) -> Void

Added in version 6.19.0

This method will be called when the user taps on a code that is already picked.