DSDocumentNormalizerModule
The DSDocumentNormalizerModule class defines general functions of the document normalizer module.
Definition
Assembly: DynamsoftCaptureVisionBundle.xcframework
- Objective-C
- Swift
NS_ASSUME_NONNULL_BEGIN @interface DSDocumentNormalizerModule : NSObjectclass DocumentNormalizerModule : NSObject
Methods
| Method | Description |
|---|---|
getVersion |
Get the version of Dynamsoft Document Normalizer. |
getVersion
Get the version of Dynamsoft Document Normalizer.
- Objective-C
- Swift
+ (NSString *)getVersion;class func getVersion() -> String
Return Value
The version of Dynamsoft Document Normalizer.
Code Snippet
- Objective-C
- Swift
NSString *version = [DSDocumentNormalizerModule getVersion];let version = DocumentNormalizerModule.getVersion()