GADSearchBannerView.h 532 B

12345678910111213141516
  1. //
  2. // GADSearchBannerView.h
  3. // Google Mobile Ads SDK
  4. //
  5. // Copyright 2011 Google Inc. All rights reserved.
  6. //
  7. #import "GADBannerView.h"
  8. // A view that displays search ads.
  9. // To show search ads:
  10. // 1) Create a GADSearchBannerView and add it to your view controller's view hierarchy.
  11. // 2) Create a GADSearchRequest ad request object to hold the search query and other search data.
  12. // 3) Call GADSearchBannerView's -loadRequest: method with the GADSearchRequest object.
  13. @interface GADSearchBannerView : GADBannerView
  14. @end