我是 Objective-c 的新手,我有一个问题。我不明白我的错误在哪里。
计数器告诉我该值为 0 的次数最多。
我有一个游戏课,柜台在哪里。一段时间后,当游戏停止时,屏幕切换到 End 类。在结束课程中,我想打印出分数。但它不起作用。
Game.h
@interface Game : CCLayer
{
int counter;
}
@property (readwrite, nonatomic) int counter;
+(int)returnCounter;
@end
Game.m
@implementation Game
@synthesize counter;
-(void)methodForMyCounter{
counter++;
}
+(int)returnCounter{
return counter;
}
End.h
End.m
@implementation
-(void)getCounter{
//here i want to print out the counter
}