WOWZVersionInfo

Superclass:
NSObject
Declared In:

Introduction

The WOWZVersionInfo class returns aspects of the GoCoder SDK version number as NSString classes.



Methods

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

buildNumber


+ (NSUInteger) buildNumber; 
Return Value

The build number component of the SDK version. If the version is 1.2.3.456, for example, the build number component is 456.

Discussion

Gets the build number.


majorVersion


+ (NSUInteger) majorVersion; 
Return Value

The major component of the SDK version. If the version is 1.2.3.456, for example, the major component is 1.

Discussion

Gets the major version number.


minorVersion


+ (NSUInteger) minorVersion; 
Return Value

The minor component of the SDK version. If the version is 1.2.3.456, for example, the minor component is 2.

Discussion

Gets the minor version number.


revision


+ (NSUInteger) revision; 
Return Value

The revision component of the SDK version. If the version is 1.2.3.456, for example, the revision component is 3.

Discussion

Gets the revision number.


string


+ (nonnull NSString *) string; 
Return Value

The major, minor, and revision components of the SDK version. If the version is 1.2.3.456, for example, the short version is 1.2.3.

Discussion

Gets the short version.


verboseString


+ (nonnull NSString *) verboseString; 
Return Value

The complete SDK version. If the version is 1.2.3.456, for example, the long version is 1.2.3.456.

Discussion

Gets the long version.