WZVersionInfo

Superclass:
NSObject
Declared In:

Introduction

The WZVersionInfo class provides access to GoCoder SDK version information.



Methods

+buildNumber
+majorVersion
+minorVersion
+revision
+string
+verboseString

buildNumber


+ (NSUInteger) buildNumber; 
Return Value

The build number component of the SDK version string; e.g.: 456 if the version is "1.2.3.456"

Discussion

The build number


majorVersion


+ (NSUInteger) majorVersion; 
Return Value

The major component of the SDK version string; e.g.: 1 if the version is "1.2.3.456"

Discussion

The major version number


minorVersion


+ (NSUInteger) minorVersion; 
Return Value

The minor component of the SDK version string; e.g.: 2 if the version is "1.2.3.456"

Discussion

The minor version number


revision


+ (NSUInteger) revision; 
Return Value

The revision component of the SDK version string; e.g.: 3 if the version is "1.2.3.456"

Discussion

The revision number


string


+ (nonnull NSString *) string; 
Return Value

The short version string as an NSString; e.g.: "1.2.3" if the version is "1.2.3.456"

Discussion

The short version string


verboseString


+ (nonnull NSString *) verboseString; 
Return Value

The long version string as an NSString; e.g.: "1.2.3.456" if the version is "1.2.3.456"

Discussion

The long version string