GoogleInteractiveMediaAds Framework ReferenceStay organized with collectionsSave and categorize content based on your preferences.
AI-generated Key Takeaways
IMAVersion is an NSObject class with properties for major, minor, and patch versions.
The majorVersion property represents the major version number and is an NSInteger.
The minorVersion property represents the minor version number and is an NSInteger.
The patchVersion property represents the patch version number and is an NSInteger.
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."],[],["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"]]