1

我是Objective-C的新手,我觉得我可能只是犯了一个愚蠢的错误,但我尝试过谷歌搜索但没有运气(也许我只是没有搜索正确的东西)

本质上,我尝试编写自己的对象类,然后创建它的几个实例,但数据似乎锁定在一起;更改任何一个参考的数据会更改所有参考的数据。

这是我制作和使用对象的地方。

@implementation Drawing
//leaving many functions out as they are not part of the problem

Ball * balls[10];
int numPoints;

//this gets called first
- (id) initWithCoder: (NSCoder *)aDecoder
{
    //leaving out loading of images.....

    numPoints=10;
    for(int i=0; i<10; i++){
        balls[i]=[[Ball alloc] init];
        printf("bmem: %p\n",%balls[i]);
        float tpx=arc4random()%1024;
        float tpy=arc4random()%768;
        printf("randX: %f\n",tpx);
        printf("randY: %f\n",tpy);
        CGPoint tempPt = CGPointMake(tpx,tpy);
        printf("mem: %p\n",%tempPt);
        [balls[i] setLocation:tempPt];
    }
    //code to start a timer on the drawRect function....
}

//called regularly, every 30 seconds
- (void) drawRect:(CGRect)rect
{
    CGContextRef c=UIGraphicsGetCurrentContext();
    CGContextClearRect(c, rect);

    for(int i=0; i<numPoints; i++)
    {
        int ptX=[balls[i] getX];
        int ptY=[balls[i] getY];
        printf("index: %d\n",i);
        printf("x: %d\n",ptX);
        printf("y: %d\n",ptY);
        CGContextDrawImage(c, CGRectMake((int)ptX-WIDTH/2, (int)ptY-WIDTH/2, WIDTH, HEIGHT), image);
    }
}

这个程序输出一系列我认为有用的数字。- “bmem”,或球所在的内存点,按预期的规律间隔递增。- “randX”和“randY”是完全随机的,因为它们应该是。- “mem”,或 CGPoint 在内存中的点,不会改变

这是球对象:

@implementation Ball
int x;
int y;

-(void)setLocation:(CGPoint)loc{
    x=loc.x;
    y=loc.y;
}

-(int)getX{
    return x;
}

-(int)getY{
    return y;
}

@end

起初我只是在 Ball 类中有静态属性,但在谷歌搜索时我发现objective-c 没有静态属性。我盲目地尝试了十几种不同的方法,但都没有成功。我真的只需要这个工作。

4

1 回答 1

2

您正在使用全局变量:

Ball * balls[10];
int numPoints;

当您可能需要实例变量时:

@interface Balls : NSObject
{
    Ball * balls[10];
    int numPoints;
}
...
@end
于 2012-07-09T15:39:19.177 回答