2

我正在创建一个游戏,让玩家将飞机滑入正确的车道。但是,我最近在我的游戏屏幕上添加了一架飞机。但是,Xcode 说我正在使用和未声明的标识符。我是新手,所以请帮忙。
这是我控制游戏的头文件。GamePlayViewController.h

#import <UIKit/UIKit.h>

@interface GamePlayViewController : UIViewController

@end

这是我的 GamePlayViewController.m 这是出现错误的地方。

    #import "GamePlayViewController.h"

#import "Airplane.h"

@interface GamePlayViewController ()

@end

@implementation GamePlayViewController

-(void) viewWillAppear:(BOOL)animated {
    //Add a vehicle
    Airplane* v = [[Airplane alloc]
                   initWithFrame:CGRectMake(221, 228, 0, 0)
                   [self.view addSubview:v];
}

@end

错误出现在 Airplane* v [[Airplane alloc]. 它说使用未声明的标识符“飞机”和“v”

我已经在谷歌和 Stackoverflow 上搜索了答案,但没有一个场景符合我的情况。

顺便说一句,提前感谢谁回答。

4

1 回答 1

1

您在哪里声明该行的图像?

image = [loadedImage retain];

我猜你没有。


添加这个:

 @property (nonatomic, retain) UIImage *image;

...到你的 .h,这个到你的 .m:

@synthesize image;
于 2012-07-06T22:08:07.070 回答