SBSViewBasedMatrixScanOverlay.h
Go to the documentation of this file.
1 //
2 // SBSViewBasedMatrixScanOverlay.h
3 // ScanditBarcodeScanner
4 //
5 // Created by Luca Torella on 02.03.18.
6 // Copyright © 2018 Scandit. All rights reserved.
7 //
8 
9 #import <UIKit/UIKit.h>
10 #import "SBSMatrixScanOverlay.h"
11 
12 @class SBSTrackedCode;
14 
15 NS_ASSUME_NONNULL_BEGIN
16 
23 
28 @property (nonatomic, weak, nullable) id<SBSViewBasedMatrixScanOverlayDelegate> delegate;
29 
36 - (void)setView:(UIView *)view forCodeWithIdentifier:(NSNumber *)identifier;
37 
44 - (void)setOffset:(UIOffset)offset forCodeWithIdentifier:(NSNumber *)identifier;
45 
46 @end
47 
48 NS_ASSUME_NONNULL_END
Protocol used to change the view corresponding to .
Definition: SBSViewBasedMatrixScanOverlayDelegate.h:20
id< SBSViewBasedMatrixScanOverlayDelegate > delegate
The delegate invoked to set the UIView that will be shown over the tracked barcode.
Definition: SBSViewBasedMatrixScanOverlay.h:28
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
The protocol overlays need to conform to.
Definition: SBSMatrixScanOverlay.h:26