Page Summary
-
IMAVersion is an NSObject class with properties for major, minor, and patch versions.
-
The majorVersion property represents the major version of something.
-
The minorVersion property represents the minor version of something.
-
The patchVersion property represents the patch version of something.
IMAVersion
@interface
IMAVersion
:
NSObject
/** Major version. */
@property
(
nonatomic
)
NSInteger
majorVersion
;
/** Minor version. */
@property
(
nonatomic
)
NSInteger
minorVersion
;
/** Patch version. */
@property
(
nonatomic
)
NSInteger
patchVersion
;
@end
Undocumented
-
Major version.
Declaration
Swift
var majorVersion : Int { get set }Objective-C
@property ( nonatomic ) NSInteger majorVersion ; -
Minor version.
Declaration
Swift
var minorVersion : Int { get set }Objective-C
@property ( nonatomic ) NSInteger minorVersion ; -
Patch version.
Declaration
Swift
var patchVersion : Int { get set }Objective-C
@property ( nonatomic ) NSInteger patchVersion ;

