AI-generated Key Takeaways
-
IMACompanionAd
is an object that stores information related to a companion ad, which is an ad displayed alongside the main video content. -
It provides access to the ad's resource value, the API framework required to run it, and its dimensions (width and height).
-
These properties are read-only and can be accessed in both Swift and Objective-C.
IMACompanionAd
@interface IMACompanionAd : NSObject
An object that holds data corresponding to the companion ad.
-
The value for the resource of this companion.
Declaration
Swift
var resourceValue: String? { get }
Objective-C
@property (nonatomic, copy, readonly, nullable) NSString *resourceValue;
-
The API needed to execute this ad, or nil if unavailable.
Declaration
Swift
var apiFramework: String? { get }
Objective-C
@property (nonatomic, copy, readonly, nullable) NSString *APIFramework;
-
The width of the companion in pixels. 0 if unavailable.
Declaration
Swift
var width: Int { get }
Objective-C
@property (nonatomic, readonly) NSInteger width;
-
The height of the companion in pixels. 0 if unavailable.
Declaration
Swift
var height: Int { get }
Objective-C
@property (nonatomic, readonly) NSInteger height;