User record structure for use with fingerprint reader databases.
This class encapsulates a user ID (used as a database key) and an optional collection of associated data. A record of this type is stored for each enrolment into a fingerprint database.
Thread safety:
Instance Methods | |
(instancetype _Nullable) | - init |
Initialise a fingerprint user record with null ID and empty contents. More... | |
(instancetype _Nullable) | - initWithID:data: |
Initialise a fingerprint user record with given contents. More... | |
Class Methods | |
(instancetype _Nullable) | + userRecord |
Allocate and initialise a fingerprint user record with null ID and empty contents. More... | |
(instancetype _Nullable) | + userRecordWithID:data: |
Allocate and initialise a fingerprint user record with given contents. More... | |
Properties | |
NSData *_Nonnull | userData |
User data for this record. More... | |
NSString *_Nonnull | userID |
User ID string for this record. More... | |
- (instancetype _Nullable) init |
Initialise a fingerprint user record with null ID and empty contents.
nil
if it failed - (instancetype _Nullable) initWithID: | (NSString *_Nonnull) | ID | |
data: | (NSData *_Nonnull) | data | |
Initialise a fingerprint user record with given contents.
ID | Initial value of the user ID field |
data | Initial value of the user data field |
nil
if it failed + (instancetype _Nullable) userRecord |
Allocate and initialise a fingerprint user record with null ID and empty contents.
nil
if it failed + (instancetype _Nullable) userRecordWithID: | (NSString *_Nonnull) | ID | |
data: | (NSData *_Nonnull) | data | |
Allocate and initialise a fingerprint user record with given contents.
ID | Initial value of the user ID field |
data | Initial value of the user data field |
nil
if it failed
|
readwritenonatomiccopy |
User data for this record.
|
readwritenonatomiccopy |
User ID string for this record.