AI-generated Key Takeaways
-
The
IMAUniversalAdID
is a data object that holds information about a universal ad ID. -
adIDValue
represents the universal ad ID value, which defaults to "unknown" if not specified by the ad. -
adIDRegistry
indicates the registry the ID is registered with, also defaulting to "unknown" if not specified.
IMAUniversalAdID
@interface IMAUniversalAdID : NSObject
Simple data object containing universal ad ID information.
-
The universal ad ID value. This will be “unknown” if it isn’t defined by the ad.
Declaration
Swift
var adIDValue: String { get }
Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull adIDValue;
-
The universal ad ID registry with which the value is registered. This will be “unknown” if it isn’t defined by the ad.
Declaration
Swift
var adIDRegistry: String { get }
Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull adIDRegistry;