hank
2019-06-20 c471bc9a726bf82ad20c45edf16f5f43bbebfcf0
commit | author | age
dcdc07 1 //
W 2 //  WAIPay.h
3 //  WASdkIntfUI
4 //
5 //  Created by GHW-T-01 on 16/3/1.
6 //  Copyright © 2016年 GHW-T-01. All rights reserved.
7 //
8
9 #import <Foundation/Foundation.h>
10 #import <StoreKit/StoreKit.h>
11
12 @protocol WAInventoryDelegate,WAPaymentDelegate;
13 @interface WAIPay : NSObject
14 -(void)init4Iap;
15 -(void)queryInventory:(id<WAInventoryDelegate>)delegate;
16 -(void)payWithProductId:(NSString *)productId extInfo:(NSString *)extInfo delegate:(id<WAPaymentDelegate>)delegate;
17 -(BOOL)isPayServiceAvailable;
c54d17 18 -(void)fetchProductInformations:(NSDictionary *)waProductIds inventoryDelegate:(id<WAInventoryDelegate>)delegate;
99a8fe 19 - (void)checkFinishTransactions;
dcdc07 20 -(SKProduct*)getCurrentProduct;
W 21 -(NSData*)getCurrentReceipt;
22 -(float)getReorderLimitTime;
1417b8 23 -(void)payLog:(NSString *)logInfo;
dcdc07 24 @end