QRScannerHelper
public class QRScannerHelper
This is the helper class that provides QR scanning functionality.
Constructor
public init(bidScannerView: BIDScannerView, kQRScanResponseDelegate: QRScanResponseDelegate)
- Creates an object of QRScannerHelper.
Parameters | ||
---|---|---|
bidScannerView | BIDScannerView | An object of BIDScannerView. |
kQRScanResponseDelegate | QRScanResponseDelegate | The block to execute after the response is received. |
Method Summary
Parameters | ||
---|---|---|
Bool | isRunning() | Indicates if the QR scanner is running or not. |
void | startQRScanning() | Starts the QR scanner. |
void | stopQRScanning() | Stops the QR scanner. |
Method Detail
isRunning
public func isRunning() -> Bool
- Indicates if the QR scanner is running or not.
startQRScanning
public func startQRScanning()
- Starts the QR scanner.
stopQRScanning
public func stopQRScanning()
- Stops the QR scanner.
Protocol Summary
QRScanResponseDelegate | Callback for the event when QR scanning is completed. |
---|---|
QRScanResponseDelegate
public protocol QRScanResponseDelegate: AnyObject
- Callback for the event when QR scanning is completed.
Method Summary
func onQRScanResult(qrCodeData: String?)
- Called when QR scanning is completed.
Parameters | ||
---|---|---|
qrCodeData | String | Returns the QR code data after the scanning is completed. |