当我尝试构建或运行我的iphone游戏时,我收到了一个不寻常的错误。
// GameScene.mm
- (void) onExit
{
if(!([SimpleBox2dScrollerAppDelegate get].paused)) //error comes here
{
[SimpleBox2dScrollerAppDelegate get].paused = YES;
[super onExit];
}
}
// SimpleBox2dScrollerAppDelegate.mm
+(SimpleBox2dScrollerAppDelegate *) get {
return (SimpleBox2dScrollerAppDelegate *) [[UIApplication sharedApplication] delegate];
}
可能是什么原因?
答案 0 :(得分:1)
没什么,可能是在你做了更改并得到这种错误之后你会遇到很多错误。
按照步骤解决问题。
- 从模拟器中删除应用程序。 - 清洁所有目标。 - 空缓存。 -delete build
现在尝试运行。