lpw
2024-06-24 96fe7669fe8da0110590467e2e95ad88c0149112
commit | author | age
96fe76 1 //
L 2 //  GADAdSizeDelegate.h
3 //  Google Mobile Ads SDK
4 //
5 //  Copyright 2012 Google LLC. All rights reserved.
6 //
7
8 #import <Foundation/Foundation.h>
9 #import <GoogleMobileAds/GADAdSize.h>
10
11 @class GADBannerView;
12
13 /// The class implementing this protocol will be notified when the GADBannerView's ad content
14 /// changes size. Any views that may be affected by the banner size change will have time to adjust.
15 @protocol GADAdSizeDelegate <NSObject>
16
17 /// Called before the ad view changes to the new size.
18 - (void)adView:(nonnull GADBannerView *)bannerView willChangeAdSizeTo:(GADAdSize)size;
19
20 @end