Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to add as many labels as objects in my array. but how to align them??.i want one below the other,and id the page is done it should start in the next column.but with the code i tried its overriding the other.

- (void)viewDidLoad
{
    [super viewDidLoad];
    array = [[ NSMutableArray alloc]initWithObjects:@"aaa",@"bbb",@"ccc",@"ddd",nil];
    for( int i=0;i<[array count];i++)
    {
        NSString *theText = [array lastObject];
        UILabel *label = [[UILabel alloc]init];
        label.text = theText;
        label.backgroundColor = [UIColor clearColor];
        label.lineBreakMode = UILineBreakModeWordWrap;
        label.frame = CGRectMake(0, label.frame.origin.y + label.frame.size.height, size.width + 20, size.height + 20);
        [self.view addSubview:label];
    }
}
share|improve this question
you're adding last object always. – Evgen Bodunov Jun 26 '12 at 11:27

5 Answers

up vote 4 down vote accepted

try this code..

array = [[ NSMutableArray alloc]initWithObjects:@"aaa",@"bbb",@"ccc",@"ddd",nil];
UILabel *label;
int y =10;
for( int i=0;i<[array count];i++)
{
    NSString *theText = [array objectAtIndex:i];
    label = [[UILabel alloc]init];
    label.text = theText;
    label.backgroundColor = [UIColor clearColor];
   label.frame = CGRectMake(0, y + label.frame.size.height, size.width + 20,   size.height + 20);
[self.view addSubview:label];
    y = y +label.frame.size.height+5;
}
share|improve this answer
1  
I am too slow :) – Disco S2 Jun 26 '12 at 11:25
this is working if there are more objects and view is full how to put next objects in another column – Sekhar Jun 26 '12 at 11:36
Add the UILabel objects i.e. label to the UIScrollView. And then make [scrollView setContentSize:CGSizeMake(320, y)]; – Shorhashi Jun 26 '12 at 11:43
- (void)viewDidLoad
{
    float originFromY = 0;

    [super viewDidLoad];
    array = [[ NSMutableArray alloc]initWithObjects:@"aaa",@"bbb",@"ccc",@"ddd",nil];
    for( int i=0;i<[array count];i++)
    {
         NSString *theText = [array lastObject];
         UILabel *label = [[UILabel alloc]init];
         label.text = theText;
          label.backgroundColor = [UIColor clearColor];
         lineBreakMode:UILineBreakModeWordWrap];
        label.frame = CGRectMake(0, originFromY, 50,40);
       [self.view addSubview:label];
       originFromY += 60;
    }
 }

may this will help you

share|improve this answer

your modified code

- (void)viewDidLoad
{
[super viewDidLoad];
array = [[ NSMutableArray alloc]initWithObjects:@"aaa",@"bbb",@"ccc",@"ddd",nil];
int y = 0;
for( int i=0;i<[array count];i++)
{
    NSString *theText = [array lastObject];
    UILabel *label = [[UILabel alloc]init];
    label.text = theText;
    label.backgroundColor = [UIColor clearColor];
    lineBreakMode:UILineBreakModeWordWrap];
    label.frame = CGRectMake(0, y, size.width + 20, size.height + 20);
    y += size.height + 20;
    [self.view addSubview:label];
}
}
share|improve this answer

Do this:

- (void)viewDidLoad
{
  [super viewDidLoad];
  array = [[ NSMutableArray alloc]initWithObjects:@"aaa",@"bbb",@"ccc",@"ddd",nil];
  for( int i=0;i<[array count];i++)
  {
    UILabel *label = [[UILabel alloc]init];
    label.text = [array objectAtIndex:i];
    label.backgroundColor = [UIColor clearColor];

    label.frame = CGRectMake(10, (i*30)+10, 100, 30); // here height is 30 and width is 100;
    [self.view addSubview:label];
   }
  }
share|improve this answer

You are always taking last Object in the loop. Instead you should take object from proper index.

int y = 10;
for( int i=0;i<[array count];i++)
{
    //NSString *theText = [array lastObject]; Wrong One
    NSString *theText = [array objectAtIndex:i]; //Correct One
    ...
    ...
    label.frame = CGRectMake(0, y, size.width + 20,   size.height);
    y += size.height + 5;

}

Also, you need to manage origin.y properly.

share|improve this answer
still overriding – Sekhar Jun 26 '12 at 11:30
see updated answer – Apurv Jun 26 '12 at 11:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.