我正在创建一个 iphone 应用程序,由于某种原因,当我运行代码时没有出现说明。这是我的指导课。当我运行程序时,什么也没有出现。
“这个游戏的对象是”不应该出现在屏幕上吗?
感谢您为我提供的任何帮助/知识:)
#import "Instructions.h"
#import "MainMenu.h"
@implementation Instructions
+ (CCScene *) scene
{
CCScene * scene = [CCScene node]; // scene is an autorelease object
Instructions * layer = [Instructions node]; // later is an autorelease object
[scene addChild: layer]; // add layer as a child to scene
return scene; // return the scene
}
- (id) init
{
if ( ( self = [super init] ) )
{
[ self how ];
}
return self;
}
- (void) how
{
NSLog(@"The object of this game is ");
}
@end