模拟器工作,设备不?

时间:2012-04-30 11:53:14

标签: objective-c ios xcode frameworks openfeint

我发现我的设备上的问题无法正常工作和模拟器工作。 当我评论这部分时,它有效:

[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.

我用我的应用程序密钥替换我的密钥以及我的应用密码的秘密代码。

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

[inv invoke]; EXC_BAD_ACCESS

然后在我的控制台中,当我踏入:

  

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

有什么建议吗? 非常感谢!

1 个答案:

答案 0 :(得分:0)

我不确定你是否这样做,但我会这样声明:

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

我希望这会有所帮助。