小编Ken*_*Ken的帖子

目前无法购买此商品

我试图在沙盒环境的ios游戏中购买一些东西,使用测试用户,在我进入appid并传递后,我收到了消息:

"目前无法购买此商品.此商品正在修改中.请稍后再试"

昨天工作正常,我什么都没改,但今天不行.我不确定原因是什么.

非常感谢.

itunes in-app-purchase ios

9
推荐指数
1
解决办法
8214
查看次数

^符号在Objective-C中意味着什么?

可能重复:
目标C中的插入符号

^符号在Objective-C中意味着什么?

码:

 GreeRequestServicePopup* requestPopup = [GreeRequestServicePopup popup];
 requestPopup.parameters = parameters;

 requestPopup.willLaunchBlock = ^(id aSender) {
 [[NSNotificationCenter defaultCenter] postNotificationName:@"request_service_popup_will_launch_block" object:nil];

 };

 requestPopup.didLaunchBlock = ^(id aSender) {
[[NSNotificationCenter defaultCenter] postNotificationName:@"request_service_popup_did_launch_block" object:nil];
 };

 requestPopup.willDismissBlock = ^(id aSender) {
 [[NSNotificationCenter defaultCenter] postNotificationName:@"request_service_popup_will_dismiss_block" object:nil];
 };

 requestPopup.didDismissBlock = ^(id aSender) {
 [[NSNotificationCenter defaultCenter] postNotificationName:@"request_service_popup_did_dismiss_block" object:nil];
 };

 requestPopup.cancelBlock = ^(id aSender) {
 [[NSNotificationCenter defaultCenter] postNotificationName:@"request_service_popup_cancel_block" object:nil];
 };

 requestPopup.completeBlock = ^(id aSender) {
 [[NSNotificationCenter defaultCenter] postNotificationName:@"request_service_popup_complete_block" object:nil];
 };

 [self.navigationController showGreePopup:requestPopup];
 }
Run Code Online (Sandbox Code Playgroud)

提前致谢!

objective-c ios objective-c-blocks

2
推荐指数
1
解决办法
1553
查看次数