Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不能提供太多信息,当我播放项目时,它会暂停。请按照以下链接在 GitHub 上查看该项目:https ://github.com/ollie5511/Xcode-Game.git
查看您的代码,您似乎在文件中调用int后直接声明了一个变量。变量只能在您的或类的方法中声明。@implementationViewController.m@interface
int
@implementation
ViewController.m
@interface
移动或删除int x = 0;,你的代码应该执行。
int x = 0;