Proxcard data class - encapsulates a proximity/RFID card's type ID and data.
Thread safety:
Instance Methods | |
(instancetype _Nullable) | - init |
Initialise a null (empty) proxcard data object. More... | |
(instancetype _Nullable) | - initWithType:contents: |
Initialise a proxcard data object with given contents and type ID. More... | |
Class Methods | |
(NSString *_Nonnull) | + contentsStringForData: |
Generate a string representation of a given tag's contents. More... | |
(instancetype _Nullable) | + proxcardData |
Allocate and initialise a null (empty) proxcard data object. More... | |
(instancetype _Nullable) | + proxcardDataWithType:contents: |
Allocate and initialise a proxcard data object with given contents and type ID. More... | |
(NSString *_Nonnull) | + typeStringForID: |
Generate the string representation of a given type ID. More... | |
Properties | |
NSData *_Nonnull | contents |
Contents of the card, typically a serial number or other unique identifier. More... | |
NSString *_Nonnull | contentsString |
String representation of the contents property. More... | |
GrabbaProxcardTypeID | type |
Type of the proxcard which was read. More... | |
NSString *_Nonnull | typeString |
String representation of the type name. More... | |
+ (NSString* _Nonnull) contentsStringForData: | (NSData *_Nonnull) | data |
Generate a string representation of a given tag's contents.
Tag-specific formatting may be supported in future; at present, the string is simply a hex dump of the tag contents.
data | Tag data |
- (instancetype _Nullable) init |
Initialise a null (empty) proxcard data object.
nil
if it failed - (instancetype _Nullable) initWithType: | (GrabbaProxcardTypeID) | type | |
contents: | (NSData *_Nonnull) | contents | |
Initialise a proxcard data object with given contents and type ID.
type | Type of card which was read, defaulting to Unknown |
contents | Contents of the card which was read, or empty NSData if no data was read |
nil
if it failed + (instancetype _Nullable) proxcardData |
Allocate and initialise a null (empty) proxcard data object.
nil
if it failed + (instancetype _Nullable) proxcardDataWithType: | (GrabbaProxcardTypeID) | type | |
contents: | (NSData *_Nonnull) | contents | |
Allocate and initialise a proxcard data object with given contents and type ID.
type | Type of card which was read, defaulting to Unknown |
contents | Contents of the card which was read, or empty NSData if no data was read |
nil
if it failed + (NSString* _Nonnull) typeStringForID: | (GrabbaProxcardTypeID) | ID |
Generate the string representation of a given type ID.
ID | Card type for which the string representation is to be generated |
|
readwritenonatomiccopy |
Contents of the card, typically a serial number or other unique identifier.
|
readnonatomiccopy |
|
readwritenonatomicassign |
Type of the proxcard which was read.