IAPAgnet.h 611 B

1234567891011121314151617181920212223242526272829
  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. /**
  11. date:2021-01-25
  12. IAPAgnet.m弃用 存在掉单问题,代码逻辑有问题,建议使用新的KDIAPManager.m
  13. */
  14. @interface IAPAgnet : NSObject <SKPaymentTransactionObserver, SKProductsRequestDelegate>
  15. @property (nonatomic, strong) NSString* productId;
  16. @property (nonatomic, strong) NSString* orderId;
  17. @property (nonatomic, strong) void(^callback)(id order, NSError* error);
  18. - (void)prepare;
  19. - (void)clean;
  20. @end
  21. #endif