For Those Migrating from Other Models to ASR-025S¶
Receiving Barcode Data¶
Unlike other models, when reading barcodes with ASR-025S, the data is returned through the receivedScanBarcodeData: callback.
Please implement the processing logic of scanned barcode data within this method.
- (void)receivedScanBarcodeData:(NSData *)barcodeData barcodeType:(AsReader025SBarcodeType)barcodeType{
//barcodeData: Barcode data
//barcodeType: Barcode type
}