1234567891011121314151617181920212223242526272829 |
- #if SDK_HAS_IAP_PAYMENT
- #import <StoreKit/StoreKit.h>
- @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
|