RGLPDF417Info

Objective-C

@interface RGLPDF417Info : NSObject

/**
 Barcode error correction level
 */
@property(nonatomic, assign, readonly) NSInteger errorLevel;
/**
 Number of columns in a barcode
 */
@property(nonatomic, assign, readonly) NSInteger columns;
/**
 Number of rows in a barcode
 */
@property(nonatomic, assign, readonly) NSInteger rows;

- (instancetype _Nonnull)init NS_UNAVAILABLE;
- (instancetype _Nonnull)initWithJSON:(NSDictionary *_Nonnull)json;
+ (instancetype _Nonnull)initWithJSON:(NSDictionary * _Nonnull)json;
- (NSDictionary *_Nonnull)jsonDictionary;

@end

Swift

class PDF417Info : NSObject

Undocumented

  • Barcode error correction level

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSInteger errorLevel;

    Swift

    var errorLevel: Int { get }
  • Number of columns in a barcode

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSInteger columns;

    Swift

    var columns: Int { get }
  • Number of rows in a barcode

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSInteger rows;

    Swift

    var rows: Int { get }
  • Unavailable

    Undocumented

    Declaration

    Objective-C

    - (instancetype _Nonnull)init NS_UNAVAILABLE;
  • Undocumented

    Declaration

    Objective-C

    - (instancetype _Nonnull)initWithJSON:(NSDictionary *_Nonnull)json;

    Swift

    init(json: [AnyHashable : Any])
  • Undocumented

    Declaration

    Objective-C

    + (instancetype _Nonnull)initWithJSON:(NSDictionary * _Nonnull)json;

    Swift

    class func initWithJSON(_ json: [AnyHashable : Any]) -> Self
  • Undocumented

    Declaration

    Objective-C

    - (NSDictionary *_Nonnull)jsonDictionary;

    Swift

    func jsonDictionary() -> [AnyHashable : Any]