Barcode Capture Feedback

Defined in framework ScanditBarcodeCapture

BarcodeCaptureFeedback
open class BarcodeCaptureFeedback : NSObject

Added in version 6.0.0

Determines what feedback (vibration, sound) should be emitted when reading barcodes. The feedback is specified for each BarcodeCapture 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 only allows to configure the feedback that gets emitted when a barcode is read successfully, through the success property.

See documentation on the BarcodeCapture.feedback property for usage samples.

`default`
open class var `default`: BarcodeCaptureFeedback { get }

Added in version 6.0.0

Returns a barcode capture feedback with default configuration:

  • default beep sound is loaded,

  • beeping for the success event is enabled,

  • vibration for the success event is enabled.

init
init()

Added in version 6.0.0

Empty constructor. Constructs a new feedback that will not emit any sound, nor vibration.

init
convenience init(fromJSONString JSONString: String) throws

Added in version 6.1.0

Construct a new barcode capture feedback with the provided JSON serialization.

success
open var success: Feedback { get, set }

Added in version 6.0.0

A feedback for a success event.

jsonString
open var jsonString: String { get }

Added in version 6.9.0

Returns the JSON representation of the feedback.