GADAdSizeDelegate.h 557 B

123456789101112131415161718192021
  1. //
  2. // GADAdSizeDelegate.h
  3. // Google Mobile Ads SDK
  4. //
  5. // Copyright 2012 Google Inc. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. #import "GADAdSize.h"
  9. @class GADBannerView;
  10. /// The class implementing this protocol will be notified when the DFPBannerView changes ad size.
  11. /// Any views that may be affected by the banner size change will have time to adjust.
  12. @protocol GADAdSizeDelegate<NSObject>
  13. /// Called before the ad view changes to the new size.
  14. - (void)adView:(GADBannerView *)bannerView willChangeAdSizeTo:(GADAdSize)size;
  15. @end