23 lines
343 B
Objective-C
23 lines
343 B
Objective-C
|
|
|
|
|
|
#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;
|
|
self.bounds = CGRectZero;
|
|
}
|
|
|
|
return self;
|
|
}
|
|
|
|
@end
|
|
|