ios-unity/Classes_cocos/LBXScanTypes.m
2022-11-25 15:08:47 +08:00

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