Skip to content

Latest commit

 

History

History
73 lines (59 loc) · 1.28 KB

File metadata and controls

73 lines (59 loc) · 1.28 KB
layout title description keywords needGenerateH3Content needAutoGenerateSidebar noTitleIndex permalink
default-layout
DSCoreModule - Dynamsoft Core Module iOS Edition API Reference
The class DSCoreModule of Dynamsoft Core Module defines general functions of the core module.
core module, objective-c, swift
true
true
true
/programming/ios/api-reference/core/basic-structures/core-module-v2.0.10.html

DSCoreModule

The DSCoreModule class defines general functions of the core module.

Definition

Assembly: DynamsoftCore.framework

>- Objective-C >- Swift > >1. ```objc @interface DSCoreModule : NSObject ``` 2. ```swift class CoreModule : NSObject ```

Methods

Method Description
getVersion Get the version of Dynamsoft Core.

getVersion

Get the version of Dynamsoft Core.

>- Objective-C >- Swift > >1. ```objc + (NSString *)getVersion; ``` 2. ```swift class func getVersion() -> String ```

Return Value

The version of Dynamsoft Core.

Code Snippet

>- Objective-C >- Swift > >1. ```objc NSString *version = [DSCoreModule getVersion]; ``` 2. ```swift let version = CoreModule.getVersion() ```