Barcode Count Basic Overlay UI Delegate
Defined in framework ScanditBarcodeCapture
Note
Using this class requires the MatrixScan AR add-on.
- BarcodeCountViewUIDelegate
protocol BarcodeCountViewUIDelegate : NSObjectProtocol
Added in version 6.15.0
- listButtonTapped
optional func listButtonTapped(for view: BarcodeCountView) ->
VoidAdded in version 6.15.0
Deprecated since version 8.5: Use method passing BarcodeCountSessionSnapshot instead.
Callback method that can be used to define an action that should be performed once the list button is tapped. Called from the main thread.
- listButtonTapped
optional func listButtonTapped(for view: BarcodeCountView, sessionSnapshot: BarcodeCountSessionSnapshot) ->
VoidAdded in version 8.5.0
Callback method that can be used to define an action that should be performed once the list button is tapped. Receives an immutable BarcodeCountSessionSnapshot of the session at the moment of the tap. Called from the main thread.
- exitButtonTapped
optional func exitButtonTapped(for view: BarcodeCountView) ->
VoidAdded in version 6.15.0
Deprecated since version 8.5: Use method passing BarcodeCountSessionSnapshot instead.
Callback method that can be used to define an action that should be performed once the exit button is tapped. Called from the main thread.
- exitButtonTapped
optional func exitButtonTapped(for view: BarcodeCountView, sessionSnapshot: BarcodeCountSessionSnapshot) ->
VoidAdded in version 8.5.0
Callback method that can be used to define an action that should be performed once the exit button is tapped. Receives an immutable BarcodeCountSessionSnapshot of the session at the moment of the tap. Called from the main thread.
- singleScanButtonTapped
optional func singleScanButtonTapped(for view: BarcodeCountView) ->
VoidAdded in version 6.16.0
Callback method that can be used to define an action that should be performed once the single scan button is tapped. Called from the main thread.