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

SBSScanCaseDelegate.h
Go to the documentation of this file.
1 //
2 // SBSScanCaseDelegate.h
3 // ScanditBarcodeScanner
4 //
5 // Created by Luca Torella on 17/02/16.
6 // Copyright © 2016 Scandit AG. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 #import "SBSScanCaseState.h"
11 
13 
26 
27 
40 - (void)didInitializeScanCase:(nonnull SBSScanCase *)scanCase;
41 
61 - (SBSScanCaseState)scanCase:(nonnull SBSScanCase *)scanCase
62  didScan:(nonnull SBSScanCaseSession *)session;
63 
64 
77 - (void)scanCase:(nonnull SBSScanCase *)scanCase
78  didChangeState:(SBSScanCaseState)state
79  reason:(SBSScanCaseStateChangeReason)reason;
80 
81 @end
Holds all barcodes that were decoded in the current session.
Definition: SBSScanCaseSession.h:36
SBSScanCaseState
Definition: SBSScanCaseState.h:18
Start a scanner for the Scandit case.
Definition: SBSScanCase.h:43
SBSScanCaseStateChangeReason
Definition: SBSScanCaseState.h:39
Calls the Protocol for events fired by SBSScanCase, e.g. when new codes are scanned.
Definition: SBSScanCaseDelegate.h:25