Stay organized with collections
Save and categorize content based on your preferences.
IMAVersion
@interfaceIMAVersion:NSObject/** Major version. */@property(nonatomic)NSIntegermajorVersion;/** Minor version. */@property(nonatomic)NSIntegerminorVersion;/** Patch version. */@property(nonatomic)NSIntegerpatchVersion;@end
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-20 UTC."],[[["\u003cp\u003e\u003ccode\u003eIMAVersion\u003c/code\u003e is an object that represents a version number with major, minor, and patch components.\u003c/p\u003e\n"],["\u003cp\u003eIt provides properties to access and modify the \u003ccode\u003emajorVersion\u003c/code\u003e, \u003ccode\u003eminorVersion\u003c/code\u003e, and \u003ccode\u003epatchVersion\u003c/code\u003e values.\u003c/p\u003e\n"],["\u003cp\u003eThe properties are accessible from both Swift and Objective-C.\u003c/p\u003e\n"]]],["The core content describes the `IMAVersion` interface, which is an object designed to represent a version number. It contains three properties: `majorVersion`, `minorVersion`, and `patchVersion`. Each property is an `NSInteger` in Objective-C and an `Int` in Swift, accessible for both getting and setting values. These represent the major, minor, and patch components of a software version.\n"],null,["IMAVersion \n\n @interface IMAVersion : NSObject\n /** Major version. */\n @property(nonatomic) NSInteger majorVersion;\n /** Minor version. */\n @property(nonatomic) NSInteger minorVersion;\n /** Patch version. */\n @property(nonatomic) NSInteger patchVersion;\n @end\n\nUndocumented\n- `\n ``\n ``\n `\n\n [majorVersion](#/c:objc(cs)IMAVersion(py)majorVersion)`\n ` \n Major version. \n\n Declaration \n Swift \n\n var majorVersion: Int { get set }\n\n Objective-C \n\n @property (nonatomic) NSInteger majorVersion;\n\n- `\n ``\n ``\n `\n\n [minorVersion](#/c:objc(cs)IMAVersion(py)minorVersion)`\n ` \n Minor version. \n\n Declaration \n Swift \n\n var minorVersion: Int { get set }\n\n Objective-C \n\n @property (nonatomic) NSInteger minorVersion;\n\n- `\n ``\n ``\n `\n\n [patchVersion](#/c:objc(cs)IMAVersion(py)patchVersion)`\n ` \n Patch version. \n\n Declaration \n Swift \n\n var patchVersion: Int { get set }\n\n Objective-C \n\n @property (nonatomic) NSInteger patchVersion;"]]