123456789101112131415161718192021222324252627282930 |
-
-
- #import "ZXQRCodeBlockPair.h"
-
- @implementation ZXQRCodeBlockPair
-
- - (id)initWithData:(ZXByteArray *)data errorCorrection:(ZXByteArray *)errorCorrection {
- if (self = [super init]) {
- _dataBytes = data;
- _errorCorrectionBytes = errorCorrection;
- }
-
- return self;
- }
-
- @end
|