AI-generated Key Takeaways
-
IMAUniversalAdID
is a simple data object that holds universal ad ID information. -
It provides the universal ad ID value (
adIDValue
) which could be "unknown" if undefined. -
It also provides the registry associated with the ad ID (
adIDRegistry
), which could also be "unknown" if undefined.
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;