1

我发现我的设备不工作和模拟器工作的问题。当我注释掉这部分时,它可以工作:

[OpenFeint initializeWithProductKey:@"MYKEY" andSecret:@"MYSECRET" andDisplayName:@"LatinToGo" andSettings:settings andDelegates:[OFDelegatesContainer containerWithOpenFeintDelegate:self]]; 

所以它看起来像这样:

//[OpenFeint initializeWithProductKey:@"MYKEY" andSecret:@"MYSECRET" andDisplayName:@"LatinToGo" andSettings:settings andDelegates:[OFDelegatesContainer containerWithOpenFeintDelegate:self]];

当我注释掉上面的那部分时它工作得很好,但是当我点击打开假动作按钮时,我得到了这个错误:

EXC_BAD_ACCESS.

我将 My key 替换为我的 app Key in open feint,并将 my secret 替换为我的 app 的密码。

当我单击打开假动作按钮时,它会转到一个文件并以绿色突出显示该部分:

[inv invoke]; EXC_BAD_ACCESS

然后当我进入时在我的控制台中:

2012-04-28 08:53:12.076 BalloonsPop[500:707] 应用程序窗口在应用程序启动结束时应该有一个根视图控制器单步直到从函数退出 +[OpenFeint(Private)launchDashboardWithDelegate:tabControllerName:andControllers: ],它没有行号信息。警告:远程故障回复:E37

有什么建议可以尝试吗?多谢!

4

1 回答 1

0

I am not sure if you do, but I would declare it like this:

OpenFeint *openfeint = [OpenFeint initializeWithProductKey:@"MYKEY" 
    andSecret:@"MYSECRET" andDisplayName:@"LatinToGo" andSettings:settings
    andDelegates:[OFDelegatesContainer containerWithOpenFeintDelegate:self]]; 

I hope this helps.

于 2012-05-01T11:08:24.583 回答