#import <GamePot/GamePot.h>
[[GamePot getInstance] coupon:/*用户输入的优惠券*/ handler:^(BOOL _success, NSError *_error) {
if(_success)
{
// message中返回优惠券使用相关结果。请在游戏弹窗显示相应消息。
}
else
{
// _error中返回优惠券使用失败原因相关信息。
// 请在游戏弹窗显示[_error localizedDescription]内容。
}
}];