Thanks for downloading Dynamsoft Barcode Reader Package!
Your download will start shortly. If your download does not begin, click here to retry.
Stores the iDCESettingParameters information.
@interface iDCESettingParameters
Attribute | type | Descriptions |
---|---|---|
cameraInstance |
DynamsoftCameraEnhancer | The Camera Enhancer instance |
textResultDelegate |
DBRTextResultDelegate | Set text result callback. |
textResultData |
NSObject | Transfer user data. |
intermediateResultDelegate |
DBRIntermediateResultDelegate | Set intermediate result callback. |
intermediateResultData |
NSObject | Transfer user data. |
The instance of Camera Enhancer. This instance will enable DBR to fetch frames from the Camera Enhancer frame queue and also take control of the status of the camera.
DynamsoftCameraEnhancer* cameraInstance
Set text result delegate.
DBRTextResultDelegate* textResultDelegate
The textResultDelegate
includes the following Parameters:
frame
: The frame data.
frameID
: The ID of frame.
results
: The recognized barcode result of the frame.
userData
: Arguments passed to your function.
Set the UserData
of the textResultDelegate
.
NSObject* textResultData
Set intermediate result delegate.
DBRIntermediateResultDelegate* intermediateResultDelegate
The intermediateResultDelegate
includes the following Parameters:
frameID
: The ID of frame.
results
: The intermediate result of the frame.
userData
: Arguments passed to your function.
Set the UserData
of the intermediateResultDelegate
.
NSObject* intermediateResultData
latest version