123456789101112131415161718192021 |
- #import "LBXScanTypes.h"
- @implementation LBXScanResult
- - (instancetype)initWithScanString:(NSString*)str imgScan:(UIImage*)img barCodeType:(NSString*)type
- {
- if (self = [super init]) {
-
- self.strScanned = str;
- self.imgScanned = img;
- self.strBarCodeType = type;
- }
-
- return self;
- }
- @end
|