0

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
4

1 に答える 1