DSCaptureVisionRouterModule
The DSCaptureVisionRouterModule
class defines general functions of the capture vision router module.
Definition
Assembly: DynamsoftCore.xcframework
- Objective-C
- Swift
@interface DSCaptureVisionRouterModule : NSObject
class CaptureVisionRouterModule : NSObject
Methods
Method | Description |
---|---|
getVersion |
Get the version of Dynamsoft Capture Vision. |
getVersion
Get the version of Dynamsoft Capture Vision.
- Objective-C
- Swift
+ (NSString *)getVersion;
class func getVersion() -> String
Return Value
The version of Dynamsoft Capture Vision.
Code Snippet
- Objective-C
- Swift
NSString *version = [DSCaptureVisionRouterModule getVersion];
let version = CaptureVisionRouterModule.getVersion()