Barcode Count Feedback
Defined in framework ScanditBarcodeCapture
- BarcodeCountFeedback
open class BarcodeCountFeedback : NSObject
Added in version 6.14.0
Determines what feedback (vibration, sound) should be emitted when barcodes are scanned.
The feedback is specified for each BarcodeCount instance separately and can be changed through the feedback property by either modifying an existing instance of this class, or by assigning a new one.
As of now, this class allows to configure the feedback that gets emitted when barcodes are read successfully, through the success property, and a feedback that gets emitted when barcodes are not read successfully, through the failure property.
See documentation on the BarcodeCount.feedback property for usage samples.
- `default`
open class var `default`: BarcodeCountFeedback { get }
Added in version 6.14.0
Returns a barcode count feedback with default configuration:
default beep sound is loaded,
beeping for the success event is enabled,
vibration for the success event is enabled,
beeping for the failure event is enabled,
vibration for the failure event is enabled.
- init
init()
Added in version 6.14.0
Empty constructor. Constructs a new feedback that will not emit any sound, nor vibration.
- success
open var success: Feedback { get, set }
Added in version 6.14.0
A feedback for a success event.