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

SBSEncodingRange.h
Go to the documentation of this file.
1 //
2 // SBSEncodingRange.h
3 // ScanditBarcodeScanner
4 //
5 // Created by Tibor Molnár on 13/07/2018.
6 // Copyright © 2018 Scandit AG. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
11 NS_ASSUME_NONNULL_BEGIN
12 
19 @interface SBSEncodingRange : NSObject
20 
21 @property (nonatomic, readonly, strong) NSString *encoding;
22 @property (nonatomic, readonly) NSUInteger start;
23 @property (nonatomic, readonly) NSUInteger end;
24 
34 - (instancetype)initWithEncoding:(NSString *)encoding start:(NSUInteger)start end:(NSUInteger)end;
35 
36 @end
37 
38 NS_ASSUME_NONNULL_END
NSUInteger end
Definition: SBSEncodingRange.h:23
NSString * encoding
Definition: SBSEncodingRange.h:21
NSUInteger start
Definition: SBSEncodingRange.h:22
An encoding range for the barcode generator. Specifies the encoding and the start and end index of th...
Definition: SBSEncodingRange.h:19