DSUtilityModule
The DSUtilityModule class defines common functionality in the DynamsoftUtility module.
Definition
Assembly: DynamsoftCaptureVisionBundle.xcframework
- Objective-C
- Swift
@interface DSUtilityModule : NSObjectclass UtilityModule : NSObject
Methods
| Method | Description |
|---|---|
getVersion |
Get the version of DynamsoftUtility module. |
getVersion
Get the version of DynamsoftUtility module.
- Objective-C
- Swift
+ (NSString *)getVersion;class func getVersion() -> String
Return Value
The version of DynamsoftUtility module.
Code Snippet
- Objective-C
- Swift
NSString *version = [DSUtilityModule getVersion];let version = UtilityModule.getVersion()