1234567891011121314151617181920212223242526272829 |
- //
- // IAPAgnet.h
- // XenonSDK
- //
- // Created by SAGESSE on 2019/5/31.
- // Copyright © 2019 SAGESSE. All rights reserved.
- //
- #if SDK_HAS_IAP_PAYMENT
- #import <StoreKit/StoreKit.h>
- /**
- date:2021-01-25
- IAPAgnet.m弃用 存在掉单问题,代码逻辑有问题,建议使用新的KDIAPManager.m
- */
- @interface IAPAgnet : NSObject <SKPaymentTransactionObserver, SKProductsRequestDelegate>
- @property (nonatomic, strong) NSString* productId;
- @property (nonatomic, strong) NSString* orderId;
- @property (nonatomic, strong) void(^callback)(id order, NSError* error);
- - (void)prepare;
- - (void)clean;
- @end
- #endif
|