GADInAppPurchaseDelegate.h 536 B

123456789101112131415161718192021
  1. //
  2. // GADInAppPurchaseDelegate.h
  3. // Google AdMob Ads SDK
  4. //
  5. // Copyright 2013 Google Inc. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. #import "GADModules.h"
  9. @class GADInAppPurchase;
  10. /// In-app purchase (IAP) delegate protocol.
  11. @protocol GADInAppPurchaseDelegate<NSObject>
  12. /// Called when the user clicks on the buy button of an IAP ad. After the receiver handles the
  13. /// purchase, it must call the purchase object's reportPurchaseStatus: method.
  14. - (void)didReceiveInAppPurchase:(GADInAppPurchase *)purchase;
  15. @end