Barcode Selection Automatic Aimer Selection
Defined in framework ScanditBarcodeCapture
- SDCBarcodeSelectionAimerBehavior
Added in version 6.17.0
Enum used to specify what happens when the user aims a barcode.
- SDCBarcodeSelectionAimerBehaviorToggleSelection
Added in version 6.17.0
Aiming and tapping an unselected barcode select it. Aiming and tapping an already selected barcode unselect it. The behavior does not apply when using SDCBarcodeSelectionAutoSelectionStrategy. In this case, SDCBarcodeSelectionAimerBehaviorRepeatSelection is always in used.
- SDCBarcodeSelectionAimerBehaviorRepeatSelection
Added in version 6.17.0
Aiming an unselected barcode selects it. Aiming on an already selected barcode will increment the count returned by SDCBarcodeSelectionSession.countForBarcode:.
- SDCBarcodeSelectionAimerSelection
@interface SDCBarcodeSelectionAimerSelection : NSObject <SDCBarcodeSelectionType>
Added in version 6.6.0
Aimer based selection, customizable via selectionStrategy.
- + aimerSelection
+ (
instancetype
)aimerSelectionAdded in version 6.6.0
Creates a new SDCBarcodeSelectionAimerSelection instance.
- - initWithAimerBehavior:
- (
instancetype
)initWithAimerBehavior:(SDCBarcodeSelectionAimerBehavior)aimerBehaviorAdded in version 6.17.0
Creates a new SDCBarcodeSelectionAimerSelection instance with the specified SDCBarcodeSelectionAimerBehavior.
- selectionStrategy
@property (nonatomic, strong, nonnull)
id
<SDCBarcodeSelectionStrategy> selectionStrategyAdded in version 6.6.0
The selection strategy to use. Defaults to SDCBarcodeSelectionManualSelectionStrategy.
- aimerBehavior
@property (nonatomic, assign) SDCBarcodeSelectionAimerBehavior aimerBehavior
Added in version 6.17.0
Aimer behavior to use. Defaults to SDCBarcodeSelectionAimerBehaviorRepeatSelection.