#import <GamePot/GamePot.h>
@interface ViewController () <GamePotPurchaseDelegate>
@end
@implementation ViewController
- (void)viewDidLoad
{
...
[[GamePot getInstance] setPurchaseDelegate:self];
...
}
- (void)GamePotPurchaseSuccess:(GamePotPurchaseInfo *)_info
{
// 付款成功
}
- (void)GamePotPurchaseFail:(NSError *)_error
{
// 支付错误。请在游戏弹窗显示失败原因相关消息。
// 消息语句请使用[error localizedDescription]。
}
- (void)GamePotPurchaseCancel
{
// 启动付款过程中取消
// 在游戏弹窗显示“已取消支付。”消息。
}
@end
[case1]
NSArray<SKProduct*>* itemList = [[GamePot getInstance] getDetails];
// 读取根据设备的货币设置标注的价格时
[[GamePot getInstance] getLocalizePrice:[product productIdentifier]];
[case2]
[[GamePot getInstance] getPurchaseItemsJsonString];
[case3]
@try{
[[GamePot getInstance] getPurchaseDetailListAsyncToJSON:^(BOOL _success, NSString *_items, NSError *_error)
{
if(_success)
{
if(_items)
{
// In-app information
}
}else
{
if(_error){
// NSLog(@"Error = %@", [_error localizedDescription]);
}
}
}];
}
@catch(NSException* ex){
NSLog(@"Error : %@", ex);
}