MBPPdf417RecognizerResult

Objective-C


@interface MBPPdf417RecognizerResult : MBPRecognizerResult <NSCopying>

Swift

class MBPPdf417RecognizerResult : MBPRecognizerResult, NSCopying

A recognizer that can scan PDF417 2D barcodes.

  • Byte array with result of the scan

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly, nullable) NSData *rawData;

    Swift

    var rawData: Data? { get }
  • Retrieves string content of scanned data

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly, nullable) NSString *stringData;

    Swift

    var stringData: String? { get }
  • Flag indicating uncertain scanning data E.g obtained from damaged barcode.

    Declaration

    Objective-C

    @property (nonatomic, readonly) BOOL uncertain;

    Swift

    var uncertain: Bool { get }
  • Type of the barcode scanned

    Declaration

    Objective-C

    @property (nonatomic, readonly) MBPBarcodeType barcodeType;

    Swift

    var barcodeType: MBPBarcodeType { get }

    Return Value

    Type of the barcode