SBSSimpleMatrixScanOverlay.h
Go to the documentation of this file.
1 //
2 // SBSSimpleMatrixScanOverlay.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<SBSSimpleMatrixScanOverlayDelegate> delegate;
29 
34 @property (nonatomic, assign) BOOL userTapEnabled;
35 
42 - (void)setColor:(UIColor *)color forCodeWithIdentifier:(NSNumber *)identifier;
43 
49 - (void)setAllAugmentationColors:(UIColor *)color;
50 
51 @end
52 
53 NS_ASSUME_NONNULL_END
id< SBSSimpleMatrixScanOverlayDelegate > delegate
The delegate invoked to set the color of an augmentation and when an augmentation is tapped...
Definition: SBSSimpleMatrixScanOverlay.h:28
BOOL userTapEnabled
Set to YES to make augmentations tappable. Default is NO.
Definition: SBSSimpleMatrixScanOverlay.h:34
Represents a recognized/localized barcode/2D code that is being tracked over multiple frames...
Definition: SBSTrackedCode.h:18
Protocol used to set the color of an augmentation or to react when an augmentation is touched...
Definition: SBSSimpleMatrixScanOverlayDelegate.h:20
A simple implementation of the abstract SBSMatrixScanOverlay class, that draws colorful, rectangle overlays on top of tracked barcodes.
Definition: SBSSimpleMatrixScanOverlay.h:22
The protocol overlays need to conform to.
Definition: SBSMatrixScanOverlay.h:26