Skip to content

Latest commit

 

History

History
43 lines (31 loc) · 1.42 KB

protocol-dbrtextresultdelegate-v9.0.2.md

File metadata and controls

43 lines (31 loc) · 1.42 KB
layout title description keywords needAutoGenerateSidebar needGenerateH3Content noTitleIndex permalink
default-layout
DBRTextResultListener - Dynamsoft Barcode Reader iOS API Reference
This page shows DBRTextResultListener protocol of Dynamsoft Barcode Reader for iOS SDK.
DBRTextResultListener, api reference, iOS
true
false
true
/programming/objectivec-swift/api-reference/protocol-dbrtextresultdelegate-v9.0.2.html

DBRTextResultListener

The Protocol that handles callback when TextResult is returned by the library.

@protocol DBRTextResultListener <NSObject>
Method Type Description
textResultCallback required Represents the method to handle the text result array returned by the library.

textResultCallback

Represents the method to handle the text result array returned by the library.

@required
- (void)textResultCallback:(NSInteger)frameId imageData:(iImageData *_Nonnull)imageData results:(NSArray<iTextResult*>* _Nullable)results;

Parameters

frameID: The ID of the frame.
imageData: The image data of the frame.
results: Recognized barcode results of the frame.

Code Snippet

You have to either use DynamsoftCameraEnhacner as the source of video streaming to receive barcode results from textResultCallback.