Deprecation warning

Please note that this is outdated documentation for an older release of the Scandit Barcode Scanner SDK.

We are deprecating the 5.x API on all platforms (except Linux). Release 5.19 in April 2021 will be our final. Applications running 5.x will continue to work, and we will continue to release critical bug fixes and security patches only, for one year. We encourage you to migrate to 6.x and take advantage of our latest / advanced features and improved performance.

You'll find the updated documentation at: Data Capture SDK Documentation for iOS

SBSMatrixScanOverlay.h
Go to the documentation of this file.
1 //
2 // SBSMatrixScanOverlay.h
3 // ScanditBarcodeScanner
4 //
5 // Created by Luca Torella on 02.03.18.
6 // Copyright © 2018 Scandit. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
11 @class SBSTrackedCode;
12 @class SBSBarcodePicker;
13 
14 NS_ASSUME_NONNULL_BEGIN
15 
27 
32 @property (nonatomic, weak, nullable) SBSBarcodePicker *picker;
33 
39 
49 - (void)addCode:(SBSTrackedCode *)code withIdentifier:(NSNumber *)identifier;
50 
57 - (void)updateCode:(SBSTrackedCode *)code withIdentifier:(NSNumber *)identifier;
58 
64 - (void)removeCodeWithIdentifier:(NSNumber *)identifier;
65 
66 @end
67 
68 NS_ASSUME_NONNULL_END
void removeAllAugmentations()
Remove augmentations that are part of the MatrixScanOverlay.
Controls the camera and orchestrates the barcode scanning process.
Definition: SBSBarcodePicker.h:144
SBSBarcodePicker * picker
The SBSBarcodePicker instance.
Definition: SBSMatrixScanOverlay.h:32
Represents a recognized/localized barcode/2D code that is being tracked over multiple frames...
Definition: SBSTrackedCode.h:18
The protocol overlays need to conform to.
Definition: SBSMatrixScanOverlay.h:26