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

SBSViewBasedMatrixScanOverlayDelegate.h
Go to the documentation of this file.
1 //
2 // SBSViewBasedMatrixScanOverlayDelegate.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 
12 @class SBSTrackedCode;
13 
14 NS_ASSUME_NONNULL_BEGIN
15 
21 
30 - (UIView *)viewBasedMatrixScanOverlay:(SBSViewBasedMatrixScanOverlay *)overlay
31  viewForCode:(SBSTrackedCode *)code
32  withIdentifier:(NSNumber *)identifier;
33 
42 - (UIOffset)viewBasedMatrixScanOverlay:(SBSViewBasedMatrixScanOverlay *)overlay
43  offsetForCode:(SBSTrackedCode *)code
44  withIdentifier:(NSNumber *)identifier;
45 
46 @end
47 
48 NS_ASSUME_NONNULL_END
Protocol used to change the view corresponding to .
Definition: SBSViewBasedMatrixScanOverlayDelegate.h:20
Represents a recognized/localized barcode/2D code that is being tracked over multiple frames...
Definition: SBSTrackedCode.h:18
An implementation of MatrixScanOverlay, that uses UIView class instances as augmentations for all of ...
Definition: SBSViewBasedMatrixScanOverlay.h:22