Class containing barcode data plus the associated symbology.
Thread safety:
Instance Methods | |
(instancetype _Nullable) | - init |
Initialise with empty data string and unknown symbology. More... | |
(instancetype _Nullable) | - initWithData: |
Initialise with given data and unknown symbology. More... | |
(instancetype _Nullable) | - initWithData:symbology: |
Initialise with given data and symbology ID. More... | |
Class Methods | |
(instancetype _Nullable) | + barcodeData |
Allocate and initialise with empty data string and unknown symbology. More... | |
(instancetype _Nullable) | + barcodeDataWithData: |
Allocate and initialise with given data and unknown symbology. More... | |
(instancetype _Nullable) | + barcodeDataWithData:symbology: |
Allocate and initialise with given data and symbology ID. More... | |
(NSString *_Nonnull) | + symbologyNameForID: |
Obtain a string representation of a given symbology name. More... | |
Properties | |
NSString *_Nonnull | barcode |
Contents of the barcode, represented as a string. More... | |
GrabbaBarcodeSymbology | symbologyID |
Symbology used by the barcode; will be set to GrabbaSymbologyUnknown if it is not yet known or could not be detected. More... | |
NSString *_Nonnull | symbologyName |
String representation of the symbology name. More... | |
+ (instancetype _Nullable) barcodeData |
Allocate and initialise with empty data string and unknown symbology.
nil
if it failed + (instancetype _Nullable) barcodeDataWithData: | (NSString *_Nonnull) | data |
Allocate and initialise with given data and unknown symbology.
data | Barcode data, used to populate the barcode property |
nil
if it failed + (instancetype _Nullable) barcodeDataWithData: | (NSString *_Nonnull) | data | |
symbology: | (GrabbaBarcodeSymbology) | symbology | |
Allocate and initialise with given data and symbology ID.
data | Barcode data, used to populate the barcode property |
symbology | Barcode symbology, used to populate the symbologyID property |
nil
if it failed - (instancetype _Nullable) init |
Initialise with empty data string and unknown symbology.
nil
if it failed - (instancetype _Nullable) initWithData: | (NSString *_Nonnull) | data |
Initialise with given data and unknown symbology.
data | Barcode data, used to populate the barcode property |
nil
if it failed - (instancetype _Nullable) initWithData: | (NSString *_Nonnull) | data | |
symbology: | (GrabbaBarcodeSymbology) | symbology | |
Initialise with given data and symbology ID.
data | Barcode data, used to populate the barcode property |
symbology | Barcode symbology, used to populate the symbologyID property |
nil
if it failed + (NSString* _Nonnull) symbologyNameForID: | (GrabbaBarcodeSymbology) | symb |
Obtain a string representation of a given symbology name.
symb | Symbology ID for which the name is to be obtained |
|
readwritenonatomiccopy |
Contents of the barcode, represented as a string.
|
readwritenonatomicassign |
Symbology used by the barcode; will be set to GrabbaSymbologyUnknown if it is not yet known or could not be detected.
|
readnonatomiccopy |
String representation of the symbology name.
This value is not directly writeable; updates should use symbologyID instead