AI-generated Key Takeaways
-
IMAAdLoadingErrorData provides information about ad loading failures, including the specific error and any associated user context.
-
The
adError
property gives you the IMAAdError that occurred during the ad loading process. -
The
userContext
property contains any custom data that was passed in the initial ad request, allowing for request-specific debugging.
IMAAdLoadingErrorData
@interface IMAAdLoadingErrorData : NSObject
Ad error data that is returned when the ads loader fails to load the ad.
-
The ad error that occurred while loading the ad.
Declaration
Swift
var adError: IMAAdError { get }
Objective-C
@property (nonatomic, readonly) IMAAdError *_Nonnull adError;
-
The user context specified in the ads request.
Declaration
Swift
var userContext: Any? { get }
Objective-C
@property (nonatomic, readonly, nullable) id userContext;