IAPAgnet.h 495 B

1234567891011121314151617181920212223242526
  1. //
  2. // IAPAgnet.h
  3. // XenonSDK
  4. //
  5. // Created by SAGESSE on 2019/5/31.
  6. // Copyright © 2019 SAGESSE. All rights reserved.
  7. //
  8. #if SDK_HAS_IAP_PAYMENT
  9. #import <StoreKit/StoreKit.h>
  10. @interface IAPAgnet : NSObject <SKPaymentTransactionObserver, SKProductsRequestDelegate>
  11. @property (nonatomic, strong) NSString* productId;
  12. @property (nonatomic, strong) NSString* orderId;
  13. @property (nonatomic, strong) void(^callback)(id order, NSError* error);
  14. - (void)prepare;
  15. - (void)clean;
  16. @end
  17. #endif