lpw
2024-06-24 96fe7669fe8da0110590467e2e95ad88c0149112
commit | author | age
96fe76 1 //
L 2 //  GADAdLoaderDelegate.h
3 //  Google Mobile Ads SDK
4 //
5 //  Copyright 2015 Google LLC. All rights reserved.
6 //
7
8 #import <Foundation/Foundation.h>
9
10 @class GADAdLoader;
11
12 /// Base ad loader delegate protocol. Ad types provide extended protocols that declare methods to
13 /// handle successful ad loads.
14 @protocol GADAdLoaderDelegate <NSObject>
15
16 /// Called when adLoader fails to load an ad.
17 - (void)adLoader:(nonnull GADAdLoader *)adLoader
18     didFailToReceiveAdWithError:(nonnull NSError *)error;
19
20 @optional
21
22 /// Called after adLoader has finished loading.
23 - (void)adLoaderDidFinishLoading:(nonnull GADAdLoader *)adLoader;
24
25 @end