VonKoob
VonKoob

Reputation: 77

Objective C While Loop not Looping

I have a while loop that should be looping through a condition, but fails to go through the process more than once.

Here is my relevant code:

NSInteger i = 0;
    while(i <= building.departments.count)
    {
        NSLog(@"Number of building departments: %lu", (unsigned long)building.departments.count);
        NSLog(@"i : %ld", (long)i);

        UILabel *dtitleLB = [[UILabel alloc] initWithFrame:CGRectMake(5, y, 310, 20)];
        dtitleLB.text = ((DBDepartment*)[building.departments objectAtIndex:i]).Name;
        dtitleLB.textAlignment =  UITextAlignmentLeft;
        dtitleLB.backgroundColor = [UIColor clearColor];
        dtitleLB.textColor = [UIColor lightGrayColor];
        dtitleLB.font = [UIFont fontWithName:@"Helvetica" size:(16.0)];
        [scrollView addSubview:dtitleLB];
        y += 30;

        UIButton* dphoneNB = [UIButton buttonWithType:UIButtonTypeCustom];
        [dphoneNB setContentHorizontalAlignment:UIControlContentHorizontalAlignmentLeft];
        [dphoneNB setTitleColor:[UIColor colorWithRed:0.3 green:0.3 blue:0.9 alpha:1.0] forState:UIControlStateNormal];
        [dphoneNB addTarget:self action:@selector(numberPress:) forControlEvents:UIControlEventTouchUpInside];
        [dphoneNB setTitle:((DBDepartment*)[building.departments objectAtIndex:i]).Phone forState:UIControlStateNormal]; i++;
        dphoneNB.frame = CGRectMake(5, y, 315, 25);
        [scrollView addSubview:dphoneNB];
        y += 30;

        UIButton* dwebsiteNB = [UIButton buttonWithType:UIButtonTypeCustom];
        [dwebsiteNB setContentHorizontalAlignment:UIControlContentHorizontalAlignmentLeft];
        [dwebsiteNB setTitleColor:[UIColor colorWithRed:0.3 green:0.3 blue:0.9 alpha:1.0] forState:UIControlStateNormal];
        [dwebsiteNB addTarget:self action:@selector(linkPress:) forControlEvents:UIControlEventTouchUpInside];
        [dwebsiteNB setTitle:((DBDepartment*)[self->building.departments objectAtIndex:i - 1]).Website forState:UIControlStateNormal]; i++;
        dwebsiteNB.frame = CGRectMake(5, y, 315, 25);
        [scrollView addSubview:dwebsiteNB];
        y += 30;

        i++;
    }

The output for the first NSLog = 1 or greater depending on the user selection (never 0). The output for the second NSLog = 0 and never gets larger.

If you could go over my code and see if there are any obvious errors, that would be greatly appreciated.

Thanks!

Upvotes: 0

Views: 258

Answers (1)

David Starkey
David Starkey

Reputation: 1840

The reason it is not looping (or looping erratically) is because you increment i in more than one spot. See the lines below (broken up to see it easier).

...
        [dphoneNB setTitle:((DBDepartment*)[building.departments 
        objectAtIndex:i]).Phone forState:UIControlStateNormal]; i++;
...
        [dwebsiteNB setTitle:((DBDepartment*)[self->building.departments 
        objectAtIndex:i - 1]).Website forState:UIControlStateNormal]; i++;
...
        i++;

As an alternative to while loops like this, a for loop should suffice.

Upvotes: 1

Related Questions