0
@interface characterclass : CCSprite
{
    bool alive;
    int speed;
    int jumpamount = 10;  <--- error
}
@property bool alive;
@property int speed;
@property int jumpamount;
@end

我如何在我的代码中这样做,我想在我的类中有一个等于 10 的变量。

4

1 回答 1

4

您需要在类实例的初始化程序中分配这些值。创建一个名为的实例方法- (id)init

- (id)init{
    self=[super init];
    if (self) {
        jumpamount=10;
    }
    return self;
}

请注意,您不再需要像这样声明您的 ivars。@property将为您创建一个 ivar。

于 2013-04-14T03:44:59.480 回答