只有第一个For循环调用

时间:2012-04-27 21:25:26

标签: iphone for-loop subview

我有两个for循环,可以为视图添加子视图。第一个添加所有子视图,但第二个for循环甚至没有执行!怎么了?

- (void)createBoxes
{
    for (int i; i<5; i++) {
        GameBox *box = [[GameBox alloc] initWithFrame:CGRectMake((i * 64) + 7, 50, 50, 50)];
        [self.view addSubview:box];
    }
    for (int e; e<5; e++) {
        GameBox *box1 = [[GameBox alloc] initWithFrame:CGRectMake((e * 64) + 7, 107, 50, 50)];
        [self.view addSubview:box1];
    }
}

2 个答案:

答案 0 :(得分:8)

正确的方法是初始化变量:

int i = 0;
int e = 0;

否则你永远不知道你会得到哪个值。

答案 1 :(得分:3)

为什么不初始化循环变量?这些都不是循环的标准。